-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
64 lines (58 loc) · 1.35 KB
/
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
services:
web:
build:
context: .
target: development
ports:
- "4567:4567"
- "9394:9394"
volumes:
- .:/app
- gem_cache:/gems
env_file:
- env.development
- .env
nelnet-test:
build: ./nelnet_test/.
ports:
- "4444:4567"
volumes:
- ./nelnet_test/.:/app
env_file:
- env.development
circulation-history:
image: ghcr.io/mlibrary/circulation_history_unstable:latest
ports:
- "3000:3000"
environment:
- RAILS_ENV=production
- MARIADB_ROOT_PASSWORD=pass
- CIRCULATION_HISTORY_DATABASE_PASSWORD=circulation_history_db_password
- DATABASE_HOST=circulation-history-db
- SECRET_KEY_BASE=secret_key_base
env_file:
- .env
circulation-history-db:
image: ghcr.io/mlibrary/circulation_history_dev_db:latest
sass:
build:
context: .
target: development
volumes:
- ./css:/app/css
- ./public/bundles:/app/public/bundles
- ./package.json:/app/package.json
- ./node_modules:/app/node_modules
command: "npm run watch-css"
esbuild:
build:
context: .
target: development
volumes:
- ./js:/app/js
- ./public/bundles:/app/public/bundles
- ./package.json:/app/package.json
command: "npm run watch-js"
volumes:
gem_cache:
circ_history_db: