mootfrost-dev/docker-compose.yml
2023-05-03 14:33:33 +03:00

21 lines
No EOL
547 B
YAML
Executable file

version: "3.9"
services:
backend:
image: git.mootfrost.dev/mootfrost777/mootfrost-dev_backend:latest
container_name: mootfrost-dev_backend
restart: always
build: backend/
frontend:
image: git.mootfrost.dev/mootfrost777/mootfrost-dev_frontend:latest
container_name: mootfrost-dev_frontend
restart: always
build: frontend/
depends_on: backend
environment:
-
labels:
- traefik.enable=true
- traefik.http.routers.mootfrost_dev.rule=Host(`mootfrost.dev`)
ports:
- "7632:7632"