Skip to content

Instantly share code, notes, and snippets.

@sevos
Created February 7, 2024 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sevos/0af1c2f4a0c262a3530fec49251e30ec to your computer and use it in GitHub Desktop.
Save sevos/0af1c2f4a0c262a3530fec49251e30ec to your computer and use it in GitHub Desktop.
Docker compose for Send
version: '3.7'
services:
app:
image: registry.gitlab.com/timvisee/send:latest
volumes:
- uploads:/uploads
ports:
- published: 1443
target: 1443
mode: host
environment:
- DETECT_BASE_URL=true
- REDIS_HOST=redis
- FILE_DIR=/uploads
depends_on:
- redis
redis:
image: redis:latest
ports:
- "6379:6379"
volumes:
- redis-data:/data
volumes:
uploads:
redis-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment