-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (43 loc) · 889 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (43 loc) · 889 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
services:
web:
# image: bennerlukas/libcap_web:libcap
build: src/LibCap/WebFrontend/.
ports:
- "5000:5000"
depends_on:
- database
- memcached
restart: on-failure
database:
ports:
- '5432:5432'
environment:
- POSTGRES_PASSWORD=1234
image: 'postgres:14.1'
restart: always
volumes:
- ./src/LibCap/Backend/db/init.sql:/docker-entrypoint-initdb.d/init.sql
memcached:
image: 'memcached'
ports:
- '11211:11211'
restart: always
adminer:
image: adminer
restart: always
ports:
- 8000:8080
depends_on:
- database
mosquitto:
image: 'toke/mosquitto'
ports:
- '1883:1883'
- '9001:9001'
restart: always
backend:
# image: bennerlukas/libcap_backend:libcap
build: src/LibCap/Backend/.
depends_on:
- mosquitto
- database