version: "3"
services:
mollysocket:
image: ghcr.io/mollyim/mollysocket:1
container_name: mollysocket
restart: always
volumes:
- ./data:/data
working_dir: /data
command: server
environment:
- MOLLY_DB="/data/mollysocket.db"
# Do not add space in the array ["http://a.tld","*"]
- MOLLY_ALLOWED_ENDPOINTS=["*"]
- MOLLY_ALLOWED_UUIDS=["*"]
- MOLLY_HOST=0.0.0.0
- MOLLY_PORT=8020
- RUST_LOG=info
ports:
- "8020:8020"