mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-04-15 17:17:37 +00:00
Update docker-compose.yml
remove redis, add sqlite db volume
This commit is contained in:
parent
945e3a95cb
commit
af125ad914
@ -6,8 +6,8 @@ services:
|
|||||||
init: true
|
init: true
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/files:/var/tmp/hemmelig/upload/files
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/files:/var/tmp/hemmelig/upload/files
|
||||||
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/database:/home/node/hemmelig/database/
|
||||||
environment:
|
environment:
|
||||||
- SECRET_REDIS_HOST=hemmelig-redis # Override this for your redis host address
|
|
||||||
- SECRET_LOCAL_HOSTNAME=0.0.0.0 # The local hostname for the fastify instance
|
- SECRET_LOCAL_HOSTNAME=0.0.0.0 # The local hostname for the fastify instance
|
||||||
- SECRET_PORT=3000 # The port number for the fastify instance
|
- SECRET_PORT=3000 # The port number for the fastify instance
|
||||||
- SECRET_HOST= # Used for i.e. set cors to your domain name
|
- SECRET_HOST= # Used for i.e. set cors to your domain name
|
||||||
@ -19,8 +19,6 @@ services:
|
|||||||
- SECRET_MAX_TEXT_SIZE=256 # The max text size for the secret. Is set in kb. i.e. 256 for 256kb
|
- SECRET_MAX_TEXT_SIZE=256 # The max text size for the secret. Is set in kb. i.e. 256 for 256kb
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
depends_on:
|
|
||||||
- redis
|
|
||||||
restart: always
|
restart: always
|
||||||
stop_grace_period: 1m
|
stop_grace_period: 1m
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@ -34,19 +32,3 @@ services:
|
|||||||
# - traefik.docker.network=proxy
|
# - traefik.docker.network=proxy
|
||||||
# # Part for optional traefik middlewares
|
# # Part for optional traefik middlewares
|
||||||
# - traefik.http.routers.hemmelig.middlewares=local-ipwhitelist@file,basic-auth@file
|
# - traefik.http.routers.hemmelig.middlewares=local-ipwhitelist@file,basic-auth@file
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
container_name: hemmelig-redis
|
|
||||||
hostname: hemmelig-redis
|
|
||||||
init: true
|
|
||||||
# Enable to make redis data persistent
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/redis/:/data
|
|
||||||
command: redis-server --appendonly yes
|
|
||||||
restart: always
|
|
||||||
stop_grace_period: 1m
|
|
||||||
healthcheck:
|
|
||||||
test: "redis-cli ping | grep PONG || exit 1"
|
|
||||||
timeout: 5s
|
|
||||||
retries: 1
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user