2021-02-20 23:39:03 +01:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
|
|
|
piston_api:
|
|
|
|
build: api
|
2021-02-21 10:53:42 +01:00
|
|
|
privileged: true
|
2021-02-20 23:39:03 +01:00
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 6969:6969
|
|
|
|
volumes:
|
|
|
|
- ./data/piston:/piston
|
|
|
|
- ./repo:/repo
|
|
|
|
tmpfs:
|
|
|
|
- /piston/cache
|
|
|
|
- /piston/jobs
|
|
|
|
|
|
|
|
piston_fs_repo: #Temporary solution until CI works
|
|
|
|
build: repo
|
2021-02-21 01:15:27 +01:00
|
|
|
command: >
|
|
|
|
bash -c '/repo/make.sh &&
|
2021-02-21 10:53:42 +01:00
|
|
|
true || curl http://piston_api:6969/repos -XPOST -d "slug=local&url=file:///repo/index.yaml";
|
2021-02-21 01:15:27 +01:00
|
|
|
echo -e "\nAn error here is fine, it just means its already added it. Perhaps you restarted this container"
|
|
|
|
'
|
2021-02-20 23:39:03 +01:00
|
|
|
volumes:
|
|
|
|
- ./repo:/repo
|
|
|
|
- ./packages:/packages
|