All checks were successful
Deploy to Production / deploy (push) Successful in 4s
20 lines
285 B
YAML
20 lines
285 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
rubic-cube:
|
|
container_name: rubic-cube
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
# ports:
|
|
# - "8083:80"
|
|
expose:
|
|
- "80"
|
|
restart: always
|
|
networks:
|
|
- npm_default
|
|
|
|
networks:
|
|
npm_default:
|
|
external: true
|