Implement hashing fields

This commit is contained in:
2022-08-18 07:20:30 +01:00
parent 3d8519154b
commit c984e70689
14 changed files with 261 additions and 38 deletions

View File

@@ -12,6 +12,8 @@ services:
- "${NEPTUNE_PORT}:8000"
env_file:
- .env
volumes_from:
- tmp
# pyroscope:
# image: pyroscope/pyroscope
@@ -22,6 +24,20 @@ services:
# command:
# - 'server'
tmp:
image: busybox
command: chmod -R 777 /var/run/redis
volumes:
- /var/run/redis
redis:
image: redis
command: redis-server /etc/redis.conf
volumes:
- ${PORTAINER_GIT_DIR}/docker/redis.conf:/etc/redis.conf
volumes_from:
- tmp
networks:
default:
external: