-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
23 lines (22 loc) · 1.08 KB
/
docker-compose.yaml
File metadata and controls
23 lines (22 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
services:
laundromates:
build:
context: .
dockerfile: Dockerfile
image: quay.io/dogmaticlimbo/laundromates:latest
container_name: laundromates
# ports:
# - "12012:12012" # Uncomment and set LAUNDROMATES_ALLOW_NON_TS if you plan to also make the app accessible locally without Tailscale
environment:
- TS_AUTHKEY=${TS_AUTHKEY}
- TS_HOSTNAME=${TS_HOSTNAME:-laundromates}
- LAUNDROMATES_NTFY_SERVER=${LAUNDROMATES_NTFY_SERVER:-https://ntfy.${TS_MAGICDNS_DOMAIN}}
- LAUNDROMATES_ALLOW_NON_TS=${LAUNDROMATES_ALLOW_NON_TS:-false}
# - LAUNDROMATES_ALLOWED_DOMAINS= # Uncomment and set allowed domains if you want to restrict external (invited or node sharing) users
# - LAUNDROMATES_DEBUG=true # Uncomment to enable debug mode
# - LAUNDROMATES_DISCORD_WEBHOOK= # Uncomment and set to your webhook URL if you want Discord notifications
# - LAUNDROMATES_NON_TS_URL= # Uncomment and set to override the URL used in ntfy and Discord notifications
volumes:
- laundromates-state:/app/state
volumes:
laundromates-state: