BuildEnvironments/docker-compose.yml

30 lines
628 B
YAML
Raw Normal View History

version: "3"
services:
linuxbuilder:
2024-07-07 16:54:19 -07:00
image: git.zontreck.com/ariascreations/buildenvironments:linux
container_name: linuxbuilder
2024-07-08 16:27:25 -07:00
restart: unless-stopped
2024-09-13 13:07:08 -07:00
env_file:
- .env
2024-09-13 01:21:03 -07:00
environment:
- AGENT=${AGENT}
- GRADLEPROP=${GRADLEPROP}
- PUB=${PUB}
- PRIVKEY=${PRIVKEY}
- PUBKEY=${PUBKEY}
2024-07-07 16:54:19 -07:00
networks:
- buildenv
2024-07-07 22:56:58 -07:00
linuxfs:
image: git.zontreck.com/ariascreations/buildenvironments:linuxfs
container_name: linuxfs
2024-07-08 16:27:25 -07:00
restart: unless-stopped
2024-09-13 13:07:08 -07:00
env_file:
- .env
2024-09-13 01:21:03 -07:00
environment:
- AGENT=${FSAGENT}
2024-07-07 22:56:58 -07:00
networks:
- buildenv
2024-07-07 16:54:19 -07:00
networks:
buildenv: