pmoraitop / Excalidraw with collaboration
0 likes
0 forks
1 files
Last active
I wanted to install excalidraw with collaboration in real time. This is my stack.
1 | version: "3.9" |
2 | |
3 | services: |
4 | frontend: |
5 | image: alswl/excalidraw:v0.17.3-fork-b1 |
6 | container_name: excalidraw-frontend |
7 | environment: |
8 | - VITE_APP_BACKEND_V2_GET_URL=https://<storage_link_reverse_proxy>/api/v2/scenes/ |
9 | - VITE_APP_BACKEND_V2_POST_URL=https://<storage_link_reverse_proxy>/api/v2/scenes/ |
10 | - VITE_APP_WS_SERVER_URL=wss://<room_link_reverse_proxy> |
artech7 / spotdl_compose.yml
0 likes
0 forks
1 files
Last active
1 | services: |
2 | spotdl: |
3 | container_name: spotdl |
4 | image: spotdl/spotify-downloader |
5 | restart: unless-stopped |
6 | command: web --host 0.0.0.0 --web-use-output-dir --keep-alive --format mp3 |
7 | volumes: |
8 | - /path/to/your/download/folder:/music:wr |
9 | #example: - /volume1/docker/spotdl/downloads:/music:wr# |
10 | ports: |
abdul / Tailscale using Portainer
0 likes
0 forks
1 files
Last active
1 | version: "3.9" |
2 | services: |
3 | ts-authkey-test: |
4 | image: tailscale/tailscale:latest |
5 | container_name: ts-authkey |
6 | hostname: authkey |
7 | environment: |
8 | - TS_AUTHKEY=tskey-auth- Generat YoUrOwNKeY at https://login.tailscale.com/admin/settings/keys |
9 | - TS_STATE_DIR=/var/lib/tailscale |
10 | - TS_USERSPACE=false |
spaskifilip / Cloudflare DNS Updater
0 likes
0 forks
1 files
Last active
Hi all I created (built on an existing creation) a DNS updater for Cloudlfare https://hub.docker.com/r/spaskifilip/cloudflare-dns-updater more detailed instructions are there, but here is my compose file
1 | #Docker compose for cloudflare-dns-updater |
2 | version: "3.6" |
3 | services: |
4 | cloudlfare-dns-updater: |
5 | image: "spaskifilip/cloudflare-dns-updater:latest" |
6 | container_name: "cloudlfare-dns-updater" |
7 | volumes: |
8 | - app-data:/app # optional unless using the domains.json file and DOMAINS_FILE_PATH variable |
9 | environment: |
10 | CF_API_TOKEN: "YOUR_API_TOKEN" # Recomended to create a token for the zones, not use the main token |
darky388 / Xibo with sql server in other server
0 likes
0 forks
1 files
Last active
1 | version: "3.9" |
2 | |
3 | services: |
4 | xibo-cms: |
5 | image: xibosignage/xibo-cms:latest |
6 | container_name: xibo-cms |
7 | ports: |
8 | - "65501:80" |
9 | environment: |
10 | - MYSQL_HOST=IP of your sql database |
abdul / Watchtower notication with gotify
0 likes
0 forks
1 files
Last active
Enable notifications for Watchtower using gotify
1 | version: "3.9" |
2 | services: |
3 | watchtower: |
4 | image: containrrr/watchtower:latest |
5 | container_name: WATCHTOWER |
6 | hostname: watchtower |
7 | networks: |
8 | - prometheus-net |
9 | mem_limit: 128m |
10 | mem_reservation: 50m |
bertrand / portainer-backup
1 likes
0 forks
1 files
Last active
Backup your portainer config and associated stack files
1 | version: "3.9" |
2 | services: |
3 | backup: |
4 | container_name: portainer-backup |
5 | image: savagesoftware/portainer-backup:latest |
6 | environment: |
7 | TZ: Europe/Paris |
8 | PUID: 1028 |
9 | PGID: 100 |
10 | PORTAINER_BACKUP_URL: "http://<IP FOR THE NAS>:9000" # To be replaced by the IP of your NAS |
Newer
Older