## Atmosphere Office — Operator Deployment ## ## Quick start: ## docker compose up -d ## ## Then visit http://localhost:8080 ## ## Configure your instance via environment variables: ## INSTANCE_FLAVOR — public, pds-operator, or self-hosted ## INSTANCE_OPERATOR — your organization name ## INSTANCE_PDS — your PDS hostname ## INSTANCE_FEATURES — comma-separated: sync,sharing,ai ## INSTANCE_ACCESS_MODE — open or allowlist ## INSTANCE_ALLOWLIST — comma-separated DIDs (when mode=allowlist) ## INSTANCE_NOTICE — banner notice text ## ## Or mount a custom instance-info.json: ## volumes: ## - ./instance-info.json:/srv/instance-info.json:ro services: office: image: atcr.io/scottlanoue.com/atmosphere-office:latest ports: - "8080:8080" environment: - INSTANCE_FLAVOR=self-hosted restart: unless-stopped