-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
95 lines (88 loc) · 2.06 KB
/
docker-compose.yml
File metadata and controls
95 lines (88 loc) · 2.06 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
name: holarse
services:
front:
image: caddy:2.10
restart: on-failure
ports:
- "127.0.0.1:80:80"
volumes:
- ./development/caddy/conf:/etc/caddy
- caddy_data:/data
networks:
- holarse-front
- holarse-back
db:
image: postgres:15
restart: on-failure
env_file:
- development/db.env
ports:
- "5432:5432"
volumes:
- website_my_pgdata:/var/lib/postgresql/data
networks:
- holarse-back
pgadmin4:
image: elestio/pgadmin:REL-9_8
restart: on-failure
env_file:
- development/db.env
environment:
- PGADMIN_LISTEN_PORT=9090
ports:
- "127.0.0.1:9090:9090"
volumes:
- ./servers.json:/pgadmin4/servers.json
networks:
- holarse-front
- holarse-back
queue:
image: apache/activemq-artemis:2.44.0
restart: on-failure
env_file:
- development/db.env
environment:
- EXTRA_ARGS=--http-host 0.0.0.0 --relax-jolokia --no-amqp-acceptor --no-hornetq-acceptor --no-mqtt-acceptor --no-stomp-acceptor --queues drueckblick,import,mail,searchidx
ports:
- "127.0.0.1:8161:8161"
- "127.0.0.1:61616:61616"
volumes:
- amq_journal_data:/var/lib/artemis-instance
networks:
- holarse-back
app:
image: eclipse-temurin:25-alpine
restart: no
env_file:
- development/oci.env
- development/db.env
ports:
- "127.0.0.1:8080:8080"
volumes:
- ./app/target/holarseweb.jar:/opt/holarseweb.jar:ro
networks:
- holarse-back
command: /bin/sh -c "java -jar /opt/holarseweb.jar"
cache:
image: memcached:latest
restart: on-failure
ports:
- "127.0.0.1:11212:11212"
networks:
- holarse-back
mail:
image: axllent/mailpit
restart: on-failure
ports:
- "127.0.0.1:8025:8025"
- "127.0.0.1:1025:1025"
networks:
- holarse-front
- holarse-back
volumes:
website_my_pgdata:
amq_journal_data:
caddy_data:
networks:
holarse-front:
holarse-back: