pict-rs/docker/dev/docker-compose.yml

19 lines
334 B
YAML
Raw Normal View History

2020-06-07 20:21:25 +00:00
version: '3.3'
services:
pictrs:
build:
context: .
dockerfile: Dockerfile
2020-06-16 00:35:39 +00:00
args:
UID: "${USER_ID:-1000}"
GID: "${GROUP_ID:-1000}"
2020-06-07 20:21:25 +00:00
ports:
- "8080:8080"
stdin_open: true
tty: true
2020-06-07 20:21:25 +00:00
environment:
2020-06-16 20:55:24 +00:00
- RUST_LOG=info,pict_rs=debug
2020-06-07 20:21:25 +00:00
volumes:
- ../../:/opt/build/repo