|
|
@ -20,8 +20,9 @@ services: |
|
|
|
interval: 10s |
|
|
|
timeout: 5s |
|
|
|
retries: 5 |
|
|
|
|
|
|
|
postgres: |
|
|
|
image: postgres:15 |
|
|
|
image: docker.io/library/postgres:15 |
|
|
|
env_file: |
|
|
|
- ../.env |
|
|
|
healthcheck: |
|
|
@ -31,8 +32,9 @@ services: |
|
|
|
retries: 5 |
|
|
|
volumes: |
|
|
|
- postgres:/var/lib/postgresql/data |
|
|
|
|
|
|
|
redis: |
|
|
|
image: redis:alpine |
|
|
|
image: docker.io/library/redis:alpine |
|
|
|
env_file: |
|
|
|
- ../.env |
|
|
|
command: ['redis-server', '--requirepass', $REDIS_PASSWORD] |
|
|
|