piston/docker-compose.dev.yaml

22 lines
513 B
YAML
Raw Normal View History

2021-10-08 15:16:57 +02:00
version: '3.2'
2021-03-29 10:41:47 +02:00
services:
2021-10-08 15:16:57 +02:00
api:
build: api
container_name: piston_api
2024-08-24 19:14:48 +02:00
privileged: true
2021-10-08 15:16:57 +02:00
restart: always
ports:
- 2000:2000
volumes:
- ./data/piston/packages:/piston/packages
2024-09-06 17:43:07 +02:00
environment:
2024-09-06 18:01:57 +02:00
- PISTON_REPO_URL=http://repo:8000/index
2021-03-29 10:41:47 +02:00
2021-10-08 15:16:57 +02:00
repo: # Local testing of packages
build: repo
container_name: piston_repo
command: ['--no-build'] # Don't build anything
volumes:
- .:/piston