This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
84 lines (74 loc) · 1.69 KB
/
docker-compose.yml
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
version: '3'
networks:
bokanbefalinger:
driver: bridge
volumes:
virtuoso_data: {}
redis_data: {}
services:
app:
container_name: app
image: digibib/bokanbefalinger-app:e5135b71420db218d9d288a41f71596650fafc3d
ports:
- 8801:8801
networks:
- bokanbefalinger
environment:
GMAIL_ADR: sercet
GMAIL_PASS: secret
SECRET_SESSION_KEY: secret
api:
container_name: api
image: digibib/bokanbefalinger-api:3d782f1e53c829121e7b11070a1e344676b2850a
networks:
- bokanbefalinger
environment:
SECRET_SESSION_KEY: secret
users:
container_name: users
image: digibib/bokanbefalinger-brukerstyring:d47b6472e2623d05eab80120fb1b461799b6099b
networks:
- bokanbefalinger
environment:
GMAIL_ADR: sercet
GMAIL_PASS: secret
SECRET_SESSION_KEY: secret
redis:
container_name: redis
image: "redis:3.0.7-alpine"
networks:
- bokanbefalinger
volumes:
- "redis_data:/data"
cron:
container_name: cron
build:
context: cron
networks:
- bokanbefalinger
virtuoso_setup:
container_name: virtuoso_setup
image: alpine
volumes:
- ./config:/config
- virtuoso_data:/data
command:
- "cp"
- "/config/virtuoso.ini"
- "/data/"
virtuoso:
container_name: virtuoso
image: "digibib/virtuoso:29c4f313cdcc7d5cd1e331906b0d77b9363679ef"
networks:
- bokanbefalinger
depends_on:
- virtuoso_setup
volumes:
- "virtuoso_data:/data"
vindu:
container_name: vindu
image: digibib/virtuoso-vindu:bbfe3be70aaab563dafacb044770dcae187b14a0
networks:
- bokanbefalinger
ports:
- 7777:7777