14 lines
235 B
Plaintext
14 lines
235 B
Plaintext
services:
|
|
{{PROJECT_NAME}}:
|
|
build: .
|
|
container_name: {{PROJECT_NAME}}
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${HOST_PORT:-80}:80"
|
|
{{#if HAS_VOLUMES}}
|
|
volumes:
|
|
{{#each VOLUMES}}
|
|
- {{this}}
|
|
{{/each}}
|
|
{{/if}}
|