mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-24 05:56:26 +02:00
19 lines
No EOL
346 B
YAML
19 lines
No EOL
346 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
piston_api:
|
|
build: api
|
|
privileged: true
|
|
restart: always
|
|
ports:
|
|
- 6969:6969
|
|
volumes:
|
|
- ./data/piston:/piston
|
|
tmpfs:
|
|
- /piston/jobs:exec
|
|
|
|
piston_fs_repo: # Local testing of packages
|
|
build: repo
|
|
command: ['dart-2.12.1'] # Only build dart
|
|
volumes:
|
|
- .:/piston |