Some checks failed
Deploy to Production / deploy (push) Failing after 4s
18 lines
275 B
YAML
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
|