-
Notifications
You must be signed in to change notification settings - Fork 21
/
docker-compose.yml
88 lines (80 loc) · 1.74 KB
/
docker-compose.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
version: "3"
services:
redis:
image: redis
postgres:
image: quay.io/acoustid/postgresql:master
volumes:
- ./admin/ci/create_db.sql:/docker-entrypoint-initdb.d/10_create_db.sql
environment:
POSTGRES_USER: acoustid
POSTGRES_PASSWORD: acoustid
POSTGRES_DB: postgres
index:
image: ghcr.io/acoustid/acoustid-index:v2022.02.03
init-db:
image: quay.io/acoustid/acoustid-server:latest
build: .
depends_on:
- postgres
command:
- bash
- -ecx
- |
/opt/acoustid/server/admin/docker/run-alembic.sh upgrade head
env_file:
- ./admin/dev/server.env
profiles:
- tools
api:
image: quay.io/acoustid/acoustid-server:latest
build: .
depends_on:
- redis
- postgres
- index
command:
- /opt/acoustid/server/admin/docker/run-api.sh
env_file:
- ./admin/dev/server.env
profiles:
- frontend
web:
image: quay.io/acoustid/acoustid-server:latest
build: .
depends_on:
- redis
- postgres
- index
command:
- /opt/acoustid/server/admin/docker/run-web.sh
env_file:
- ./admin/dev/server.env
profiles:
- frontend
cron:
image: quay.io/acoustid/acoustid-server:latest
build: .
depends_on:
- redis
- postgres
- index
command:
- /opt/acoustid/server/admin/docker/run-cron.sh
env_file:
- ./admin/dev/server.env
profiles:
- backend
worker:
image: quay.io/acoustid/acoustid-server:latest
build: .
depends_on:
- redis
- postgres
- index
command:
- /opt/acoustid/server/admin/docker/run-worker.sh
env_file:
- ./admin/dev/server.env
profiles:
- backend