-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
48 lines (48 loc) · 983 Bytes
/
compose.yaml
File metadata and controls
48 lines (48 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: flowey
services:
landing:
build: landing
image: ghcr.io/flowey-org/landing:latest
develop:
watch:
- path: landing
action: rebuild
restart: unless-stopped
networks:
- traefik
labels:
- traefik.enable=true
- traefik.docker.network=traefik
backend:
build: backend
image: ghcr.io/flowey-org/backend:latest
develop:
watch:
- path: backend
action: rebuild
restart: unless-stopped
networks:
- traefik
volumes:
- db:/home/flowey/.local/share/flowey
labels:
- traefik.enable=true
- traefik.docker.network=traefik
pwa:
build: pwa
image: ghcr.io/flowey-org/pwa:latest
develop:
watch:
- path: pwa
action: rebuild
networks:
- traefik
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.docker.network=traefik
networks:
traefik:
external: true
volumes:
db: