Some checks failed
Deploy to Production / deploy (push) Failing after 4s
22 lines
361 B
YAML
22 lines
361 B
YAML
name: rubic-cube
|
|
|
|
services:
|
|
rubic-cube:
|
|
container_name: rubic-cube
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8083:80"
|
|
expose:
|
|
- "80"
|
|
restart: unless-stopped
|
|
# volumes:
|
|
# - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
networks:
|
|
- npm_public
|
|
|
|
networks:
|
|
npm_public:
|
|
external: true
|