Files
idea.llm.gitea.repo.docker.…/templates/nodejs/express/docker-compose.yml.template
2026-01-26 22:33:55 -06:00

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}}