Files
nonograms/docker-compose.yml
Grzegorz Kucmierz 588a131d68
All checks were successful
Deploy to Production / deploy (push) Successful in 3s
Refactor docker-compose to match standard NPM setup (remove internal network)
2026-02-16 13:45:16 +01:00

18 lines
256 B
YAML

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