All checks were successful
Deploy to Production / deploy (push) Successful in 7s
18 lines
252 B
YAML
18 lines
252 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
rubic-cube:
|
|
container_name: rubic-cube
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8083:80"
|
|
restart: always
|
|
networks:
|
|
- rubic-net
|
|
|
|
networks:
|
|
rubic-net:
|
|
driver: bridge
|