21 lines
450 B
YAML
21 lines
450 B
YAML
services:
|
|
app:
|
|
container_name: nonograms-app
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
# ports:
|
|
# - "8081:80"
|
|
expose:
|
|
- "80"
|
|
restart: unless-stopped
|
|
# Uncomment the following lines if you want to mount the configuration locally for development/testing
|
|
# volumes:
|
|
# - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
networks:
|
|
- npm_public
|
|
|
|
networks:
|
|
npm_public:
|
|
external: true
|