-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
181 lines (179 loc) · 4.92 KB
/
docker-compose.yml
File metadata and controls
181 lines (179 loc) · 4.92 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
services:
####### MongoDB #######
mongo:
image: mongo:7
networks:
artcoded:
restart: always
volumes:
- ./data/db:/data/db
####### Keycloak #######
postgresql:
restart: always
networks:
artcoded:
image: "postgres:14"
volumes:
- ./data/keycloak-postgres:/var/lib/postgresql/data
keycloak:
restart: always
image: nbittich/keycloak:26.4.0
networks:
artcoded:
command: start --optimized --proxy-headers xforwarded
####### Redis #######
redis:
image: valkey/valkey:7.2-alpine
restart: always
networks:
artcoded:
command: redis-server --appendonly yes
volumes:
- ./data/redis:/data
####### New file service #######
file-service:
image: nbittich/file-service:2026.1.0
environment:
TMP_FS_PATH: "/temporary"
tmpfs:
- /temporary:size=4096m
volumes:
- ./data/backend/files:/astorage
networks:
artcoded:
restart: always
####### Artemis #######
artemis:
image: nbittich/artemis:2026.0.0
networks:
artcoded:
restart: always
volumes:
- ./config/artemis/login.config:/var/lib/artemis-instance/etc/login.config
- ./config/artemis/broker.xml:/var/lib/artemis-instance/etc/broker.xml
- ./data/artemis:/var/lib/artemis-instance/data
- ./data/artemis/journal:/var/lib/artemis-instance/data/journal
environment:
ARTEMIS_JVM_ARGS: "-XX:+UseCompactObjectHeaders"
user: root
####### Api Gateway #######
api-gateway:
image: nbittich/api-gateway:2026.1.0
restart: always
networks:
artcoded:
depends_on:
- api-backend
- back-office
- website
- triplestore
volumes:
- ./config/gateway:/usr/config
####### Api Backend #######
api-backend:
image: nbittich/api-backend:2026.5.13
restart: always
networks:
artcoded:
tmpfs:
- /temporary:size=4096m
volumes:
- ./data/backend:/var/artcoded/data
- ./data/backend/temp:/var/undertow/upload
- ./config/backend:/usr/config
- ./config/scripts:/var/artcoded_scripts
depends_on:
- sftp
####### BACK OFFICE #######
back-office:
image: nbittich/back-office:v2026.5.7
restart: always
networks:
artcoded:
volumes:
- ./config/back-office/nginx.conf:/etc/nginx/nginx.conf
####### Triplestore #######
triplestore:
networks:
artcoded:
image: nbittich/triplestore:2026.1.0
restart: always
volumes:
- ./data/tdb2:/triplestore
- ./data/migrations:/migrations
####### Website #######
website:
image: nbittich/websitev2:2026.0.0
restart: always
networks:
artcoded:
####### Graphana #######
grafana:
restart: unless-stopped
image: grafana/grafana:10.2.2
networks:
artcoded:
volumes:
- ./data/grafana:/var/lib/grafana
####### Node Exporter #######
node-exporter:
image: prom/node-exporter:latest
container_name: monitoring_node_exporter
restart: unless-stopped
networks:
artcoded:
expose:
- 9100
####### SFTP #######
sftp:
networks:
artcoded:
image: nbittich/sftp:2026.0.0
volumes:
- ./data/peppol/ftp/invoices:/home/peppol/invoices
- ./data/peppol/ftp/expenses/:/home/peppol/expenses
command: peppol::1001
####### Prometheus #######
prometheus:
restart: unless-stopped
image: prom/prometheus:v2.48.1
volumes:
- ./data/prometheus:/prometheus
depends_on:
- keycloak
networks:
artcoded:
###### Yopass ######
yopass:
image: jhaals/yopass
restart: always
command: "--database=redis --redis=redis://redis:6379 --port 80"
depends_on:
- redis
networks:
artcoded:
###### Nextcloud ######
cloud:
restart: always
image: nextcloud:31-fpm-alpine
volumes:
- ./data/nextcloud:/var/www/html
depends_on:
- postgresql
- redis
networks:
artcoded:
cloud-cron:
image: nextcloud:31-fpm-alpine
restart: always
volumes:
- ./../nextcloud-data:/var/www/html
entrypoint: /cron.sh
networks:
artcoded:
depends_on:
- postgresql
- redis
- cloud
networks:
artcoded: