mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-17 02:01:29 +10:00
ci(docker): add env port to dockerfile, use port env instead of server_port
This commit is contained in:
@ -4,7 +4,7 @@ export default registerAs('app', () => ({
|
||||
timezone: process.env.TZ,
|
||||
environment: process.env.NODE_ENV,
|
||||
secretKey: process.env.SECRET_KEY,
|
||||
port: parseInt(process.env.SERVER_PORT, 10) || 3100,
|
||||
port: parseInt(process.env.PORT, 10) || 3100,
|
||||
url: process.env.PUBLIC_APP_URL || 'http://localhost:3000',
|
||||
serverUrl: process.env.PUBLIC_SERVER_URL || 'http://localhost:3100',
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user