-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (50 loc) · 1.2 KB
/
docker-compose.yml
File metadata and controls
54 lines (50 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
services:
unbgeology-mongodb-lib-unb-ca:
image: mongodb/mongodb-atlas-local
env_file:
- ./env/mongo.env
restart: unless-stopped
container_name: unbgeology-mongodb-lib-unb-ca
ports:
- 27017:27017
volumes:
- unbgeology_mongodb_data:/data/db
- unbgeology_mongodb_config:/data/configdb
networks:
- unbgeology.lib.unb.ca
unbgeology-lib-unb-ca:
build:
context: .
depends_on:
- unbgeology-mongodb-lib-unb-ca
- idp-saml-unbgeology-lib-unb-ca
restart: unless-stopped
container_name: unbgeology-lib-unb-ca
volumes:
- ./app:/app/html
- ./files:/app/files
env_file:
- ./env/nuxt.env
networks:
- unbgeology.lib.unb.ca
ports:
- 3118:80
- 31180:31180
- 9118:9118
idp-saml-unbgeology-lib-unb-ca:
image: ghcr.io/unb-libraries/simplesamlphp:1.x
container_name: idp-unbgeology-lib-unb-ca
restart: unless-stopped
env_file:
- ./env/saml.env
networks:
- unbgeology.lib.unb.ca
ports:
- 6118:8080
- 61180:8443
volumes:
unbgeology_mongodb_data:
unbgeology_mongodb_config:
networks:
unbgeology.lib.unb.ca:
name: unbgeology.lib.unb.ca