-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.e2e.yaml
More file actions
36 lines (33 loc) · 820 Bytes
/
Copy pathdocker-compose.e2e.yaml
File metadata and controls
36 lines (33 loc) · 820 Bytes
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
services:
registry:
image: registry:3
ports:
- "5000:5000"
environment:
- REGISTRY_HTTP_ADDR=0.0.0.0:5000
networks:
aurcache_network:
aurcache:
build:
context: .
dockerfile: docker/Dockerfile
ports:
- "${AURCACHE_PORT:-8080}:8080"
- "${AURCACHE_MIRROR_PORT:-8081}:8081"
environment:
- LOG_LEVEL=debug
- BUILDER_IMAGE=localhost:5000/aurcache-builder:test
- BUILD_ARTIFACT_DIR=${TEMP_DIR}/builds
volumes:
- ${TEMP_DIR}/db:/app/db
- ${TEMP_DIR}/repo:/app/repo
- ${TEMP_DIR}/builds:/app/builds
- ${TEMP_DIR}/config:/app/config
- /var/run/docker.sock:/var/run/docker.sock
networks:
aurcache_network:
depends_on:
- registry
networks:
aurcache_network:
driver: bridge