-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
37 lines (36 loc) · 1.01 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
version: '3.2'
services:
ancilla:
container_name: ancilla
build:
context: ./ancilla
dockerfile: Dockerfile
image: "localhost/ancilla:${ANCILLA_COMMIT:-latest}"
ports:
- "5000:5000"
ancilla-rpi3:
container_name: ancilla
build:
context: ./ancilla
dockerfile: Dockerfile_pi3
image: "localhost/ancilla:rpi3-${ANCILLA_COMMIT:-latest}"
ports:
- "5000:5000"
ancilla-rpi4:
container_name: ancilla
build:
context: ./ancilla
dockerfile: Dockerfile_pi4
image: "localhost/ancilla:rpi4-${ANCILLA_COMMIT:-latest}"
ports:
- "5000:5000"
# volumes:
# - ./ancilla/app:/var/www/layerkeep/app
# environment:
# RAILS_ENV: ${RAILS_ENV:-production}
# PG_HOST: db
# PG_USERNAME: ${PG_USERNAME:-postgres}
# PG_PASSWORD: ${PG_PASSWORD:-''}
# PG_DATABASE: ${PG_DATABASE:-layerkeep}
# RABBITMQ_URL: "amqp://rabbit:rabbit@rabbitmq:5672"
# REPO_MOUNT_PATH: "../repos"