mail_poste.io
This commit is contained in:
commit
edfa3b2552
2 changed files with 46 additions and 0 deletions
22
.gitignore
vendored
Normal file
22
.gitignore
vendored
Normal file
|
@ -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
|
24
docker-compose.yaml
Normal file
24
docker-compose.yaml
Normal file
|
@ -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
|
Loading…
Reference in a new issue