A web interface for viewing GMail backups created by Got-Your-Back (GYB)
3.3K
WebGYB provides a web interface for viewing GMail backups created by Got-Your-Back (GYB)ā .
docker run -d \
-p 3000:3000 \
-v "/path/to/gyb/accounts:/app/accounts" \
davidedg/webgyb
Access the application at http://localhost:3000
accounts/
āāā {account1}/
āāā msg-db.sqlite
āāā {email_folders}/
āāā {account2}/
āāā msg-db.sqlite
āāā {email_folders}/
services:
webgyb:
image: davidedg/webgyb
container_name: webgyb
init: true
user: "1000:1000"
ports:
- "3000:3000"
volumes:
- /path/to/gyb/accounts:/app/accounts:ro
environment:
- PUID=1000
- PGID=1000
- NODE_ENV=production
- HOST=0.0.0.0
- PORT=3000
- GYB_ACCOUNTS_DIR=/app/accounts
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
PUID: User ID (default: 1000)PGID: Group ID (default: 1000)NODE_ENV: Node environment (default: production)HOST: Host to bind to (default: 0.0.0.0)PORT: Port to listen on (default: 3000)GYB_ACCOUNTS_DIR: Directory containing GYB accounts (default: /app/accounts)Content type
Image
Digest
sha256:1b0d63df2ā¦
Size
120.8 MB
Last updated
almost 2 years ago
docker pull davidedg/webgyb