Added example compose for a tailscale deployment
This commit is contained in:
@@ -10,9 +10,9 @@ name: Container image
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- '**'
|
- "**"
|
||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- "v*"
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
@@ -108,7 +108,7 @@ jobs:
|
|||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./docker/Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name == 'push' }}
|
push: ${{ github.event_name == 'push' }}
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
# An example of a docker compose with Tailscale & QUptime.
|
||||||
|
# This setup is specifically intended for hosts that may not be able to reach each other directly or have a public IP address.
|
||||||
|
|
||||||
|
services:
|
||||||
|
tailscale:
|
||||||
|
image: tailscale/tailscale:latest
|
||||||
|
container_name: tailscale
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
environment:
|
||||||
|
- TS_AUTHKEY=${TAILSCALE_AUTHKEY} # Set this in your .env file with a Tailscale auth key
|
||||||
|
- TS_HOSTNAME=quptime-tailscale
|
||||||
|
volumes:
|
||||||
|
- /dev/net/tun:/dev/net/tun
|
||||||
|
- tailscale:/var/lib/tailscale
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
quptime:
|
||||||
|
image: git.cer.sh/axodouble/quptime:master
|
||||||
|
container_name: quptime
|
||||||
|
volumes:
|
||||||
|
- quptime:/etc/quptime
|
||||||
|
ports:
|
||||||
|
- "9901:9901"
|
||||||
|
depends_on:
|
||||||
|
- tailscale
|
||||||
|
# No restart directive, user needs to init quptime first
|
||||||
|
# Run `docker compose -f docker-compose-tailscale.yml run --rm quptime init` to initialize
|
||||||
|
# the data volume before starting the service
|
||||||
|
# If this is not the master node, use
|
||||||
|
# `docker compose -f docker-compose-tailscale.yml run --rm quptime --advertise <TAILSCALE_IP>:9901 --secret <SECRET>`
|
||||||
|
# And add the individual nodes to the cluster with `docker compose -f docker-compose-tailscale.yml run --rm quptime node add <OTHER_NODE_IP>:9901`
|
||||||
|
network_mode: "service:tailscale" # Use the Tailscale network stack
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
tailscale:
|
||||||
|
quptime:
|
||||||
Reference in New Issue
Block a user