Change to the official images for syncthing and nginx to the alpine images. (#1)

* Change to the official images for syncthing and nginx to the alpine images.

Signed-off-by: Gontier Julien <gontierjulien68@gmail.com>

* Add .gitignore

Signed-off-by: Gontier Julien <gontierjulien68@gmail.com>

Signed-off-by: Gontier Julien <gontierjulien68@gmail.com>
This commit is contained in:
Snow 2022-09-18 22:38:32 +02:00 committed by GitHub
parent f6bee53b1a
commit 8a5e9ef5c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 8 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
http-root/
data/
.env

View File

@ -1,6 +1,7 @@
version: "3.7"
services:
nginx:
image: nginx:mainline-alpine
container_name: nginx
restart: ${RESTART:-unless-stopped}
hostname: ${DOMAIN_NAME:?err}
@ -8,10 +9,9 @@ services:
- './http-root:/var/lib/nginx/html/http-root:ro'
- './preset/nginx.conf:/etc/nginx/nginx.conf:ro'
- './preset/conf.d-tunnels:/etc/nginx/conf.d:ro'
image: nginx
syncthing:
image: linuxserver/syncthing
image: syncthing/syncthing:latest
container_name: syncthing
hostname: ${DOMAIN_NAME:?err}
environment:
@ -19,7 +19,7 @@ services:
- PGID=1000
- TZ=Europe/London
volumes:
- './data/syncthing:/config'
- './data/syncthing:/var/syncthing/config'
- './http-root/chaotic-aur:/repo'
ports:
- '127.0.0.1:8384:8384'
@ -29,7 +29,7 @@ services:
restart: ${RESTART:-unless-stopped}
cloudflared:
image: erisamoe/cloudflared
image: erisamoe/cloudflared:latest
container_name: cloudflared
command: --origincert /root/.cloudflared/cert.pem tunnel run --url http://nginx ${DOMAIN_NAME:?err}
restart: ${RESTART:-unless-stopped}

View File

@ -1,6 +1,7 @@
version: "3.7"
services:
nginx:
image: nginx:mainline-alpine
container_name: nginx
restart: ${RESTART:-unless-stopped}
hostname: ${DOMAIN_NAME:?err}
@ -17,10 +18,9 @@ services:
ports:
- '80:80'
- '443:443'
image: nginx
syncthing:
image: linuxserver/syncthing
image: syncthing/syncthing:latest
container_name: syncthing
hostname: ${DOMAIN_NAME:?err}
environment:
@ -28,7 +28,7 @@ services:
- PGID=1000
- TZ=Europe/London
volumes:
- './data/syncthing:/config'
- './data/syncthing:/var/syncthing/config'
- './http-root/chaotic-aur:/repo'
ports:
- '127.0.0.1:8384:8384'
@ -38,11 +38,11 @@ services:
restart: ${RESTART:-unless-stopped}
certbot:
image: certbot/certbot:${LETSENCRYPT_TAG:-latest}
container_name: certbot
restart: ${RESTART:-unless-stopped}
volumes:
- './data/acme-webroot:/srv/http/webroot'
- './data/letsencrypt/etc:/etc/letsencrypt'
- './data/letsencrypt/var:/var/lib/letsencrypt'
image: certbot/certbot:${LETSENCRYPT_TAG:-latest}
entrypoint: "/bin/sh -c 'trap exit TERM; sleep 10; while :; do certbot renew -w /srv/http/webroot/ --webroot; sleep 12h & wait $${!}; done;'"