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=["*"] # TODO: #- MOLLY_VAPID_PRIVKEY="paste output of `docker compose mollysocket vapid gen` here" - MOLLY_HOST=0.0.0.0 - MOLLY_PORT=8020 - RUST_LOG=info ports: - "8020:8020"