remove all references of a service

This commit is contained in:
peskyadmin 2025-04-08 16:36:45 -05:00
parent c4b862850d
commit 9c3513be6e

View File

@ -28,16 +28,14 @@ your-project/
``` ```
2. Create Required Directories 2. Create Required Directories
```bash ```bash
mkdir -p tailscale/tailscale-data tailscale/config homepage/config mkdir -p tailscale/tailscale-data
``` ```
3. Configure Tailscale 3. Configure Tailscale
- Replace `{{YOUR_TAILSCALE_AUTHKEY}}` in the docker-compose.yml with your actual Tailscale auth key - Replace `{{YOUR_TAILSCALE_AUTHKEY}}` in the docker-compose.yml with your actual Tailscale auth key
- Optionally, update the file in `tailscale/config/serve.json` if you need specific Tailscale serve configurations - Optionally, update the file in `tailscale/config/serve.json` if you need specific Tailscale serve configurations
4. Configure {{service}} 4. Configure {{service}}
- Add your Homepage configuration files to homepage/config/ - See {{service_docs}} for configuration options
- See https://gethomepage.dev/latest/configs/ for configuration options
- The default setup allows all hosts (HOMEPAGE_ALLOWED_HOSTS: "*")
5. Start the Services 5. Start the Services
```bash ```bash
@ -50,8 +48,8 @@ your-project/
- Runs Tailscale VPN client - Runs Tailscale VPN client
- Image: tailscale/tailscale:latest - Image: tailscale/tailscale:latest
- Container name: homepage-ts - Container name: {{service}}-ts
- Hostname: homepage - Hostname: {{service}}
- Requires NET_ADMIN and SYS_MODULE capabilities - Requires NET_ADMIN and SYS_MODULE capabilities
- Persists state in ./tailscale/tailscale-data - Persists state in ./tailscale/tailscale-data
- Uses configuration from ./tailscale/config - Uses configuration from ./tailscale/config
@ -71,7 +69,7 @@ your-project/
## Optional Features ## Optional Features
- Uncomment the Docker socket volume mapping in the Homepage service to enable Docker integrations: - Uncomment the Docker socket volume mapping in the service to enable Docker integrations:
```yaml ```yaml
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
``` ```
@ -95,9 +93,9 @@ your-project/
- Verify the configuration files have proper permissions - Verify the configuration files have proper permissions
- Make sure required directories exist before starting - Make sure required directories exist before starting
## Notes ## Notes
- The Homepage service uses the Tailscale service's network stack via network_mode: service:homepage-ts - The {{service}} service uses the Tailscale service's network stack via network_mode: service:{{service}}-ts
- Direct port mapping is disabled by default as Tailscale handles the networking - Direct port mapping is disabled by default as Tailscale handles the networking
- Services restart automatically unless explicitly stopped - Services restart automatically unless explicitly stopped
- For more information: - For more information:
- Tailscale documentation: https://tailscale.com/kb/ - Tailscale documentation: https://tailscale.com/kb/
- Homepage documentation: https://gethomepage.dev/ - {{service}} documentation: {{service_docs}}