-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
47 lines (47 loc) · 1.17 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
version: "3.7"
services:
archelon-stomp-listener:
image: docker.lib.umd.edu/archelon
env_file:
- docker-archelon.env
command: [ "bundle", "exec", "rails", "stomp:listen" ]
archelon:
image: docker.lib.umd.edu/archelon
ports:
- "3000:3000"
env_file:
- docker-archelon.env
volumes:
- archelon-import-export-data:/var/opt/archelon:ro
- archelon-storage:/opt/archelon/storage
archelon-delayed-job-worker:
image: docker.lib.umd.edu/archelon
env_file:
- docker-archelon.env
command: [ "bundle", "exec", "rails", "jobs:work" ]
volumes:
- archelon-storage:/opt/archelon/storage:ro
archelon-sftp:
image: docker.lib.umd.edu/archelon-sftp:latest
ports:
- "2200:22"
volumes:
- archelon-import-export-data:/data
archelon-db:
image: postgres:13.0-alpine
environment:
POSTGRES_USER: archelon
POSTGRES_PASSWORD: archelon
POSTGRES_DB: archelon
volumes:
- "dbdata:/var/lib/postgresql/data"
ports:
- "5434:5432"
volumes:
archelon-storage:
archelon-import-export-data:
dbdata:
networks:
default:
external: true
name: umd-fcrepo_default