mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
26 lines
373 B
YAML
26 lines
373 B
YAML
services:
|
|
backend:
|
|
build: .
|
|
ports:
|
|
- "8080:8080"
|
|
networks:
|
|
- back-net
|
|
frontend:
|
|
build: web/admin-gui/.
|
|
ports:
|
|
- "8081:80"
|
|
networks:
|
|
- front-net
|
|
db:
|
|
image: mongo:6.0.2
|
|
# ports:
|
|
# - "27017:27017"
|
|
volumes:
|
|
- ./mongodbdata:/data/db
|
|
networks:
|
|
- back-net
|
|
|
|
networks:
|
|
front-net:
|
|
back-net:
|