-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
executable file
·52 lines (49 loc) · 1018 Bytes
/
docker-compose.dev.yml
File metadata and controls
executable file
·52 lines (49 loc) · 1018 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
49
50
51
52
services:
server:
build:
context: .
dockerfile: Dockerfile
target: dev
user: "${_UID}:${_GID}"
volumes:
- ./:/app/
command: ["run", "watch-server"]
environment:
- ENABLE_REGISTRATION=true
- BROWSER=none
- FEED_FATHOM_DOMAIN=localhost:3456
- MAILJET_API_KEY=
- MAILJET_API_SECRET=
- TURNSTILE_SITE_KEY=
- TURNSTILE_SECRET_KEY=
ports:
- "3456:5173"
migrator:
build:
context: .
dockerfile: Dockerfile
target: dev
user: "${_UID}:${_GID}"
volumes:
- ./:/app/
command: ["run", "watch-worker"]
worker:
build:
context: .
dockerfile: Dockerfile
target: dev
user: "${_UID}:${_GID}"
volumes:
- ./:/app/
command: ["run", "watch-worker"]
deploy:
replicas: 1
mail:
build:
context: .
dockerfile: Dockerfile
target: dev
user: "${_UID}:${_GID}"
volumes:
- ./:/app/
command: ["run", "watch-worker"]