remove sexy stack

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-26 11:38:13 +02:00
co-authored by Claude Sonnet 5
parent 5880b9cd58
commit 912806dfc9
3 changed files with 0 additions and 54 deletions
-1
View File
@@ -19,7 +19,6 @@ Each stack is independently deployable with its own `compose.yml` and `.env`. Al
| `headscale` | Self-hosted Tailscale control server (WireGuard mesh VPN) | headscale | | `headscale` | Self-hosted Tailscale control server (WireGuard mesh VPN) | headscale |
| `obsidian` | CouchDB sync backend for the Obsidian LiveSync plugin | obsidian | | `obsidian` | CouchDB sync backend for the Obsidian LiveSync plugin | obsidian |
| `pulsenode` | Infrastructure dashboard - monitors all the stacks above | pulsenode | | `pulsenode` | Infrastructure dashboard - monitors all the stacks above | pulsenode |
| `sexy` | Bluetooth toy control console (Buttplug protocol) | sexy |
## Config files ## Config files
-10
View File
@@ -1,10 +0,0 @@
# Network
NETWORK_NAME=falcon_network
TRAEFIK_HOST=sexy.pivoine.art
# Application secrets
# ACCESS_PASSWORD: shared secret typed into the login form.
# AUTH_SECRET: session-signing key, at least 16 chars, must differ from ACCESS_PASSWORD.
# Generate one with: openssl rand -base64 32
ACCESS_PASSWORD=change_me
AUTH_SECRET=change_me_too_at_least_16_chars
-43
View File
@@ -1,43 +0,0 @@
services:
sexy:
image: dev.pivoine.art/valknar/sexy:latest
container_name: sexy
read_only: true
tmpfs:
- /tmp
cap_drop:
- ALL
security_opt:
- no-new-privileges:true
environment:
ACCESS_PASSWORD: ${ACCESS_PASSWORD}
AUTH_SECRET: ${AUTH_SECRET}
DATABASE_PATH: /app/data/app.db
volumes:
- ../.data/sexy/data:/app/data
restart: always
healthcheck:
test: ["CMD", "node", "healthcheck.mjs"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s
labels:
- "traefik.enable=true"
- "traefik.http.routers.sexy-web.rule=Host(`${TRAEFIK_HOST}`)"
- "traefik.http.routers.sexy-web.entrypoints=web"
- "traefik.http.routers.sexy-web.middlewares=sexy-redirect-web-secure"
- "traefik.http.middlewares.sexy-redirect-web-secure.redirectscheme.scheme=https"
- "traefik.http.routers.sexy-web-secure.rule=Host(`${TRAEFIK_HOST}`)"
- "traefik.http.routers.sexy-web-secure.entrypoints=web-secure"
- "traefik.http.routers.sexy-web-secure.tls.certresolver=resolver"
- "traefik.http.routers.sexy-web-secure.middlewares=security-headers@file,no-index@file"
- "traefik.http.services.sexy-web-secure.loadbalancer.server.port=3000"
- "traefik.docker.network=${NETWORK_NAME}"
networks:
- compose_network
networks:
compose_network:
name: ${NETWORK_NAME}
external: true