-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 899 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: "3.9"
services:
atui3:
build: .
image: atui:3-beta-nix
container_name: atui3
platform: linux/amd64 #needed for ROOT binary build amd64
volumes:
- /tmp/.X11-unix/:/tmp/.X11-unix #uncomment for MacOS or Linux
- ${HOME}/.config/pulse:/root/.config/pulse #uncomment for MacOS or Linux
- image-downloads:/root:rw
environment:
- DISPLAY=host.docker.internal:0 #uncomment for MacOS
- PULSE_SERVER=host.docker.internal #uncomment for MacOS
#- DISPLAY=${DISPLAY} #uncomment for Linux
#- PULSE_SERVER=10.5.0.1 #uncomment for Linux
networks:
atui3_network:
ipv4_address: 10.5.0.5
volumes:
image-downloads:
networks:
atui3_network:
driver: bridge
ipam:
config:
- subnet: 10.5.0.0/24
gateway: 10.5.0.1