17 lines
358 B
YAML
17 lines
358 B
YAML
version: "3.4"
|
|
|
|
services:
|
|
mailspring-api:
|
|
container_name: mailspring-api
|
|
image: ghcr.io/1randomdev/mailspring-api:latest
|
|
network_mode: bridge
|
|
ports:
|
|
- 5101:5101/tcp
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- SHARE_URL=http://localhost:5101
|
|
- LOG_LEVEL=info
|
|
restart: unless-stopped
|