mootfrost-dev/docker-compose.yml
2023-05-06 17:46:40 +03:00

25 lines
648 B
YAML
Executable file

version: "3.8"
services:
backend:
image: git.mootfrost.dev/mootfrost777/mootfrost-dev_backend:latest
container_name: mootfrost-dev_backend
restart: always
build: backend/
environment:
- BIRTHDATE=2007-10-13
- HOST=0.0.0.0
# - PORT=80 # default port
frontend:
image: git.mootfrost.dev/mootfrost777/mootfrost-dev_frontend:latest
container_name: mootfrost-dev_frontend
restart: always
build: frontend/
depends_on:
- backend
labels:
- traefik.enable=true
- traefik.http.routers.mootfrost_dev.rule=Host(`mootfrost.dev`)
# Website port
ports:
- "7632:80"