mirror of
https://github.com/shenxn/protonmail-bridge-docker.git
synced 2025-12-06 00:17:10 +00:00
- Clean up the example `docker-compose.yml` file by removing unnecessary configuration/comments and add missing volume declaration - Update the project README.md with instructions on how to use the project with Docker Compose
15 lines
245 B
YAML
15 lines
245 B
YAML
version: '2.1'
|
|
|
|
services:
|
|
protonmail-bridge:
|
|
image: shenxn/protonmail-bridge
|
|
ports:
|
|
- 1025:25/tcp
|
|
- 1143:143/tcp
|
|
restart: unless-stopped
|
|
volumes:
|
|
- protonmail:/root
|
|
volumes:
|
|
protonmail:
|
|
name: protonmail
|