working state

This commit is contained in:
Lieuwe Leene 2022-11-13 10:41:45 +01:00
parent c8fe500d18
commit f2c84d08cd
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
root /var/www/html/roundcube; root /var/www/roundcube;
index index.php index.html index.htm; index index.php index.html index.htm;
location / { location / {

View File

@ -18,7 +18,7 @@ services:
container_name: pgsqlserver container_name: pgsqlserver
image: postgres:15 image: postgres:15
environment: environment:
- POSTGRES_MULTIPLE_DATABASES="gitea, roundcube" - POSTGRES_MULTIPLE_DATABASES=gitea, roundcube
volumes: volumes:
- sql_data:/var/lib/postgresql/data/:z - sql_data:/var/lib/postgresql/data/:z
- ./config/pg-init-scripts:/docker-entrypoint-initdb.d:ro - ./config/pg-init-scripts:/docker-entrypoint-initdb.d:ro
@ -67,6 +67,7 @@ services:
- "9000" - "9000"
volumes: volumes:
- mail_html:/var/www/html:z - mail_html:/var/www/html:z
- mail_html:/var/www/roundcube:z
mailserver: mailserver:
build: ./config/mail build: ./config/mail
@ -105,8 +106,8 @@ services:
- nginx_certs:/etc/nginx/certs/:z - nginx_certs:/etc/nginx/certs/:z
- nginx_conf:/etc/nginx/conf.d/:z - nginx_conf:/etc/nginx/conf.d/:z
- nginx_vhost:/etc/nginx/vhost.d/:z - nginx_vhost:/etc/nginx/vhost.d/:z
- nginx_html:/usr/share/nginx/html/:z - nginx_html:/usr/share/nginx/html:z
- mail_html:/var/www/html/roundcube:z - mail_html:/var/www/roundcube:z
- ./config/nginx/inbox.zathura.leene.dev_location:/etc/nginx/vhost.d/inbox.zathura.leene.dev_location:z - ./config/nginx/inbox.zathura.leene.dev_location:/etc/nginx/vhost.d/inbox.zathura.leene.dev_location:z
- /var/run/docker.sock:/tmp/docker.sock:z - /var/run/docker.sock:/tmp/docker.sock:z
depends_on: depends_on: