-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yaml
31 lines (28 loc) · 923 Bytes
/
docker-compose.yaml
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
services:
printurls:
image: wuerges/animeitor-v2:latest
entrypoint: "/printurls"
command: "--prefix ${PREFIX} --sedes ${SEDES}: --secret ${SECRET}"
volumes:
- ./config:/config
build:
context: .
animeitor-v2:
image: wuerges/animeitor-v2:latest
command: "-v /photos:photos -v /sounds:sounds -v /dist: --sedes ${SEDES}: --secret ${SECRET} ${BOCA_URL}"
volumes:
- ./tests:/tests
- ./config:/config
# place your team photos inside of ./server/photos
- ./server/photos:/photos
# place your team sounds inside of ./server/sounds
- ./server/sounds:/sounds
# the ./client-v2/static/user-styles.css can be edited, and it will
# overwrite the styles from the app
- ./client-v2/static/user-styles.css:/dist/user-styles.css
ports:
- ${PUBLIC_PORT}:8000
environment:
- RUST_LOG=debug
build:
context: .