updates
This commit is contained in:
@@ -4,44 +4,34 @@ networks:
|
||||
|
||||
services:
|
||||
dovecot:
|
||||
image: docker.gitea.com/gitea:1.26.0
|
||||
container_name: gitea
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- GITEA__database__DB_TYPE=postgres
|
||||
- GITEA__database__HOST=db:5432
|
||||
- GITEA__database__NAME=gitea
|
||||
- GITEA__database__USER=gitea
|
||||
- GITEA__database__PASSWD={{ gitea_db_password }}
|
||||
- GITEA__server__SSH_LISTEN_PORT=2222
|
||||
- GITEA__server__SSH_PORT=2222
|
||||
- SSH_LISTEN_PORT=2222
|
||||
restart: always
|
||||
image: docker.io/dovecot/dovecot:latest
|
||||
container_name: dovecot
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- gitea
|
||||
- mail
|
||||
volumes:
|
||||
- ./gitea:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- mail_data:/srv/vmail
|
||||
ports:
|
||||
- "31110:31110"
|
||||
- "31995:31995"
|
||||
- "31143:31143"
|
||||
- "31993:31993"
|
||||
- "31110:31110"
|
||||
- "31995:31995"
|
||||
- "1465:1465"
|
||||
- "31587:31587"
|
||||
- "31024:31024"
|
||||
depends_on:
|
||||
- db
|
||||
- "34190:34190"
|
||||
- "8080:8080"
|
||||
- "127.0.01:9110:9110"
|
||||
|
||||
db:
|
||||
image: docker.io/library/postgres:14
|
||||
restart: always
|
||||
environment:
|
||||
- POSTGRES_USER=gitea
|
||||
- POSTGRES_PASSWORD={{ gitea_db_password }}
|
||||
- POSTGRES_DB=gitea
|
||||
postfix:
|
||||
image: git.secretbee.buzz/bee/postfix:latest
|
||||
container_name: postfix
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- gitea
|
||||
- mail
|
||||
volumes:
|
||||
- ./postgres:/var/lib/postgresql/data
|
||||
- /etc/letsencrypt/live/mail.secretbee.buzz/fullchain.pem:/etc/postfix/fullchain.pem
|
||||
- /etc/letsencrypt/live/mail.secretbee.buzz/privkey.pem:/etc/postfix/privkey.pem
|
||||
|
||||
volumes:
|
||||
mail-data:
|
||||
Reference in New Issue
Block a user