-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (54 loc) · 1.2 KB
/
docker-compose.yml
File metadata and controls
59 lines (54 loc) · 1.2 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
version: "3"
services:
db:
image: postgres:12.4-alpine
restart: always
environment:
POSTGRES_USER: innihald
POSTGRES_PASSWORD: supersecret
POSTGRES_DB: innihald
ports:
- 5432:5432
volumes:
- postgresdb
pgAdmin:
image: dpage/pgadmin4:4.25
environment:
PGADMIN_DEFAULT_EMAIL: innihald@example.com
PGADMIN_DEFAULT_PASSWORD: supersecret
ports:
- 7010:80
mongodb:
image: mongo:4.4.0-bionic
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
ports:
- 27017:27017
mongo-express:
image: mongo-express:0.54.0
restart: always
ports:
- 7020:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_SERVER: mongodb
activemq:
image: vromero/activemq-artemis:2.15.0-alpine
restart: always
ports:
- 61616:61616
- 5672:5672
- 7030:8161
environment:
ARTEMIS_USERNAME: root
ARTEMIS_PASSWORD: example
startpage:
image: caddy:2.1.1-alpine
restart: always
ports:
- 80:80
volumes:
- .:/usr/share/caddy