mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2026-08-15 03:57:17 +02:00
Modify docker-compose for Kutt and Redis
Updated Kutt service configuration and Redis image version.
This commit is contained in:
@@ -3,7 +3,6 @@ services:
|
|||||||
kutt:
|
kutt:
|
||||||
image: kutt/kutt:v3.2.6
|
image: kutt/kutt:v3.2.6
|
||||||
container_name: kutt
|
container_name: kutt
|
||||||
hostname: kutt
|
|
||||||
depends_on:
|
depends_on:
|
||||||
redis:
|
redis:
|
||||||
condition: service_started
|
condition: service_started
|
||||||
@@ -13,8 +12,6 @@ services:
|
|||||||
expose:
|
expose:
|
||||||
- 3000
|
- 3000
|
||||||
volumes:
|
volumes:
|
||||||
#- /etc/localtime:/etc/localtime:ro
|
|
||||||
#- /etc/timezone:/etc/timezone:ro
|
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/kutt/data:/var/lib/kutt
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/kutt/data:/var/lib/kutt
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/kutt/custom:/kutt/custom
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/kutt/custom:/kutt/custom
|
||||||
environment:
|
environment:
|
||||||
@@ -55,7 +52,6 @@ services:
|
|||||||
#- OIDC_SCOPE=${KUTT_OIDC_SCOPE:-openid profile email}
|
#- OIDC_SCOPE=${KUTT_OIDC_SCOPE:-openid profile email}
|
||||||
#- OIDC_EMAIL_CLAIM=${KUTT_OIDC_EMAIL_CLAIM:-email}
|
#- OIDC_EMAIL_CLAIM=${KUTT_OIDC_EMAIL_CLAIM:-email}
|
||||||
#- OIDC_BUTTON_TEXT=${KUTT_OIDC_BUTTON_TEXT:-Log in with OIDC}
|
#- OIDC_BUTTON_TEXT=${KUTT_OIDC_BUTTON_TEXT:-Log in with OIDC}
|
||||||
|
|
||||||
#- SERVER_IP_ADDRESS=${KUTT_SERVER_IP_ADDRESS}
|
#- SERVER_IP_ADDRESS=${KUTT_SERVER_IP_ADDRESS}
|
||||||
#- SERVER_CNAME_ADDRESS=${KUTT_SERVER_CNAME_ADDRESS}
|
#- SERVER_CNAME_ADDRESS=${KUTT_SERVER_CNAME_ADDRESS}
|
||||||
#- REPORT_EMAIL=${KUTT_REPORT_EMAIL}
|
#- REPORT_EMAIL=${KUTT_REPORT_EMAIL}
|
||||||
@@ -73,14 +69,11 @@ services:
|
|||||||
# - traefik.http.routers.kutt.middlewares=local-ipwhitelist@file,crowdsec@file
|
# - traefik.http.routers.kutt.middlewares=local-ipwhitelist@file,crowdsec@file
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis:alpine
|
image: redis:8-alpine
|
||||||
container_name: kutt-redis
|
container_name: kutt-redis
|
||||||
hostname: redis
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
expose:
|
expose:
|
||||||
- 6379
|
- 6379
|
||||||
environment:
|
|
||||||
- TZ=Europe/Berlin
|
|
||||||
#networks:
|
#networks:
|
||||||
# - internal
|
# - internal
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user