mirror of
https://github.com/JamesTurland/JimsGarage.git
synced 2024-11-22 07:50:19 +00:00
22 lines
539 B
YAML
22 lines
539 B
YAML
|
version: '3.9'
|
||
|
services:
|
||
|
headscale:
|
||
|
container_name: headscale
|
||
|
volumes:
|
||
|
- /home/ubuntu/docker/headscale/config:/etc/headscale/
|
||
|
- /home/ubuntu/docker/headscale/keys:/var/lib/headscale/
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
- 9090:9090
|
||
|
image: headscale/headscale:latest
|
||
|
command: headscale serve
|
||
|
restart: unless-stopped
|
||
|
|
||
|
headscale-ui:
|
||
|
image: ghcr.io/gurucomputing/headscale-ui:latest
|
||
|
pull_policy: always
|
||
|
container_name: headscale-ui
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- 9999:80
|