2020-06-07 20:21:25 +00:00
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
2020-06-25 20:21:25 +00:00
|
|
|
pictrs-amd64:
|
|
|
|
build:
|
2020-06-17 15:21:54 +00:00
|
|
|
context: .
|
2020-06-25 20:21:25 +00:00
|
|
|
dockerfile: Dockerfile.amd64
|
|
|
|
args:
|
|
|
|
UID: "${USER_ID:-1000}"
|
|
|
|
GID: "${GROUP_ID:-1000}"
|
|
|
|
stdin_open: true
|
|
|
|
tty: true
|
|
|
|
environment:
|
|
|
|
- RUST_LOG=info,pict_rs=debug
|
|
|
|
volumes:
|
2020-12-03 17:38:28 +00:00
|
|
|
- ../../data:/mnt
|
2020-06-25 20:21:25 +00:00
|
|
|
- ../../:/opt/build/repo
|
|
|
|
|
|
|
|
pictrs-arm64v8:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.arm64v8
|
|
|
|
args:
|
|
|
|
UID: "${USER_ID:-1000}"
|
|
|
|
GID: "${GROUP_ID:-1000}"
|
|
|
|
stdin_open: true
|
|
|
|
tty: true
|
|
|
|
environment:
|
|
|
|
- RUST_LOG=info,pict_rs=debug
|
|
|
|
volumes:
|
2020-12-03 17:38:28 +00:00
|
|
|
- ../../data:/mnt
|
2020-06-25 20:21:25 +00:00
|
|
|
- ../../:/opt/build/repo
|
2020-10-11 01:27:57 +00:00
|
|
|
|
|
|
|
pictrs-arm32v7:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.arm32v7
|
|
|
|
args:
|
|
|
|
UID: "${USER_ID:-1000}"
|
|
|
|
GID: "${GROUP_ID:-1000}"
|
|
|
|
stdin_open: true
|
|
|
|
tty: true
|
|
|
|
environment:
|
|
|
|
- RUST_LOG=info,pict_rs=debug
|
|
|
|
volumes:
|
2020-12-03 17:38:28 +00:00
|
|
|
- ../../data:/mnt
|
2020-10-11 01:27:57 +00:00
|
|
|
- ../../:/opt/build/repo
|