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

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