14 lines
227 B
YAML
14 lines
227 B
YAML
version: "3.3"
|
|
services:
|
|
backend:
|
|
build: .
|
|
ports:
|
|
- 9090:80
|
|
restart: unless-stopped
|
|
frontend:
|
|
build: BBB_frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:80
|
|
depends_on:
|
|
- backend
|