21 lines
367 B
Plaintext
21 lines
367 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:
|
|
PYTHONUNBUFFERED: 1
|
|
PORT: {{PORT}}
|
|
{{#if HAS_VOLUMES}}
|
|
volumes:
|
|
{{#each VOLUMES}}
|
|
- {{this}}
|
|
{{/each}}
|
|
{{/if}}
|