25 lines
457 B
Plaintext
25 lines
457 B
Plaintext
services:
|
|
{{PROJECT_NAME}}:
|
|
build: .
|
|
container_name: {{PROJECT_NAME}}
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${HOST_PORT:-{{PORT}}}:{{PORT}}"
|
|
{{#if USE_ENV_FILE}}
|
|
env_file:
|
|
- .env
|
|
{{/if}}
|
|
environment:
|
|
NODE_ENV: production
|
|
PORT: {{PORT}}
|
|
{{#if HAS_VOLUMES}}
|
|
volumes:
|
|
{{#each VOLUMES}}
|
|
- {{this}}
|
|
{{/each}}
|
|
{{/if}}
|
|
{{#if EXTRA_HOSTS}}
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
{{/if}}
|