docker-compose.yml
This commit is contained in:
parent
fa0805275a
commit
5b51c55046
1 changed files with 14 additions and 6 deletions
|
@ -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"
|
Loading…
Add table
Reference in a new issue