BuildEnvironments/docker-compose.yml

28 lines
516 B
YAML
Raw Normal View History

version: "3"
services:
linuxbuilder:
2024-09-14 01:44:01 -07:00
image: linuxagent
container_name: linuxbuilder
2024-07-08 16:27:25 -07:00
restart: unless-stopped
2024-09-13 13:30:07 -07:00
env_file: .env
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:30:07 -07:00
env_file: .env
2024-07-07 22:56:58 -07:00
networks:
- buildenv
2024-10-05 19:52:25 -07:00
arch:
2024-10-05 21:19:02 -07:00
image: archagent
2024-10-05 19:52:25 -07:00
container_name: arch
restart: unless-stopped
env_file: .env
networks:
- buildenv
2024-07-07 16:54:19 -07:00
networks:
2024-11-09 03:13:30 -07:00
buildenv: