docker-compose.yml

This commit is contained in:
Mootfrost777 2023-05-03 14:33:33 +03:00
parent fa0805275a
commit 5b51c55046

View file

@ -1,13 +1,21 @@
version: "3.8"
version: "3.9"
services:
web:
image: git.mootfrost.dev/mootfrost777/mootfrost-dev:latest
container_name: mootfrost-dev_web
backend:
image: git.mootfrost.dev/mootfrost777/mootfrost-dev_backend:latest
container_name: mootfrost-dev_backend
restart: always
build: .
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"
- "7632:7632"