Files
nonograms/docker-compose.yml
Grzegorz Kucmierz 44b0f6443f
Some checks failed
Deploy to Production / deploy (push) Failing after 4s
fix: allow dynamic container name to prevent conflicts
2026-02-19 07:08:27 +01:00

18 lines
275 B
YAML

version: '3.8'
services:
nonograms:
container_name: ${CONTAINER_NAME:-nonograms}
build:
context: .
dockerfile: Dockerfile
expose:
- "80"
restart: unless-stopped
networks:
- npm_public
networks:
npm_public:
external: true