dockercompose

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 7896cf2fb176f714cb5935a70db56227e5d4a864
parent c3982e97af22d490c410c8a3cf24ea72277699cb
Author: AndrewLockVI <andrewlaack1@gmail.com>
Date:   Mon,  1 Apr 2024 22:59:54 -0500

Added ssl

Diffstat:
Mdocker-compose.yml | 17+++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/docker-compose.yml b/docker-compose.yml @@ -7,7 +7,7 @@ services: ports: - "8096:8096" volumes: - - ./configJelly:/config + - ../configJelly:/config - /home/shared:/media calibre-web: @@ -20,9 +20,9 @@ services: - PGID=1000 - TZ=America/Chicago volumes: - - ./configCalibre:/config + - ../configCalibre:/config - /home/shared/books:/books - - ./certs:/ssl/certs + - ../certs:/ssl/certs restart: unless-stopped portainer: @@ -33,7 +33,7 @@ services: - "9000:9000" volumes: - /var/run/docker.sock:/var/run/docker.sock - - ./portainer_data:/data + - ../portainer_data:/data gitea: image: gitea/gitea:latest @@ -42,7 +42,7 @@ services: - "2222:22" - "8089:80" volumes: - - ./gitea:/data + - ../gitea:/data restart: always pihole: @@ -55,8 +55,8 @@ services: environment: TZ: 'America/Chicago' volumes: - - './pihole/etc-pihole:/etc/pihole' - - './pihole/etc-dnsmasq.d:/etc/dnsmasq.d' + - '../pihole/etc-pihole:/etc/pihole' + - '../pihole/etc-dnsmasq.d:/etc/dnsmasq.d' restart: unless-stopped nginx: @@ -64,7 +64,8 @@ services: container_name: nginx restart: unless-stopped volumes: - - ./nginx/:/etc/nginx/ + - ../nginx/:/etc/nginx/ + - ../certs/:/ssl/certs ports: - "80:80" - "443:443"