24 lines
617 B
YAML
Executable file
24 lines
617 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
|
|
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:3000"
|