-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.deploy.yml
More file actions
58 lines (54 loc) · 1.28 KB
/
docker-compose.deploy.yml
File metadata and controls
58 lines (54 loc) · 1.28 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
services:
caddy:
image: caddy:2.10
container_name: caddy
restart: unless-stopped
ports:
- 80:80
- 443:443
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro
- caddy-config:/config
networks:
- web-network
sampo-dashboard:
container_name: rocrate-sampo-dashboard
build:
context: .
dockerfile: .docker/sampo-ui/deploy.dockerfile
args:
API_URL: ${SAMPO_API_URL}
# image: ghcr.io/esciencelab/sampo-dashboard
# platform: ${DOCKER_DEFAULT_PLATFORM:-linux/x86_64}
restart: unless-stopped
tty: true
networks:
- web-network
ports:
- "3006:3001"
volumes:
- node_modules:/usr/src/app/node_modules/
jena-fuseki:
container_name: rocrate-jena-fuseki
image: stain/jena-fuseki
platform: ${DOCKER_DEFAULT_PLATFORM:-linux/x86_64}
restart: unless-stopped
tty: true
networks:
- web-network
ports:
- "3030:3030"
volumes:
- jena-fuseki-data:/fuseki
- ./.docker/fuseki/config.ttl:/fuseki/config.ttl
environment:
ADMIN_PASSWORD: ${FUSEKI_PASSWORD}
networks:
web-network:
name: rocrate-web-network
volumes:
jena-fuseki-data:
name: rocrate-data
node_modules:
name: rocrate-node_modules
caddy-config: