mirror of
https://github.com/JamesTurland/JimsGarage.git
synced 2024-11-21 23:40:19 +00:00
21 lines
539 B
YAML
21 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
|