mirror of
https://github.com/LLukas22/Jellyswarrm.git
synced 2025-12-30 18:07:46 -05:00
15 lines
395 B
YAML
15 lines
395 B
YAML
services:
|
|
jellyswarrm-proxy:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: jellyswarrm-proxy:latest
|
|
container_name: jellyswarrm-proxy
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- JELLYSWARRM_USERNAME=admin
|
|
- JELLYSWARRM_PASSWORD=jellyswarrm # Change this in production!
|
|
- RUST_LOG=jellyswarrm_proxy=debug |