commit edfa3b2552771371b40f92968793f08f901d1e96 Author: rober-tm Date: Fri Sep 29 00:22:28 2023 -0300 mail_poste.io diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a57d3a5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +media/* +plex/* +.bash* +.profile* +.ssh* +.vim* +downloads/* +.gitconfig +*.log +.DS_Store +.env +flexget/*.sqlite +transmission/* +node_modules + +mnt +path +config_plex +pelis.json +flexget/db-config-jobs.sqlite +flexget/db-config.sqlite +data \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..bb309e8 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,24 @@ +version: "3.4" + +services: + poste: + image: analogic/poste.io + restart: always + network_mode: "host" + expose: + - 25 + - 110 + - 143 + - 465 + - 587 + - 993 + - 995 + - 5080 + - 5443 + volumes: + - ./data:/data + environment: + - HTTPS=off + - DISABLE_CLAMAV=TRUE + - HTTP_PORT=5080 + - HTTPS_PORT=5443 \ No newline at end of file