forked from rust-lang/crates.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (50 loc) · 1.22 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
version: "3"
services:
postgres:
image: postgres:9.6
environment:
POSTGRES_DB: cargo_registry
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- 5432:5432
volumes:
- postgres-data:/var/lib/postgresql/data
backend:
build:
context: .
dockerfile: backend.Dockerfile
environment:
DATABASE_URL: postgres://postgres:password@postgres/cargo_registry
SESSION_KEY: badkeyabcdefghijklmnopqrstuvwxyzabcdef
GIT_REPO_URL: file://./tmp/index-bare
GH_CLIENT_ID: ""
GH_CLIENT_SECRET: ""
links:
- postgres
ports:
- 8888:8888
volumes:
# Mount the src/ directory so we don't have to rebuild the Docker image
# when we want to change some code
- ./src:/app/src:ro
- index:/app/tmp
- cargo-cache:/usr/local/cargo/registry
- target-cache:/app/target
frontend:
build:
context: .
dockerfile: frontend.Dockerfile
entrypoint: npm run start -- --proxy http://backend:8888
links:
- backend
ports:
- 4200:4200
volumes:
# Mount the app/ directory so live reload works
- ./app:/app/app:ro
volumes:
postgres-data:
cargo-cache:
target-cache:
index: