|
|
@ -3,14 +3,16 @@ services: |
|
|
|
|
|
|
|
db: |
|
|
|
restart: always |
|
|
|
image: postgres:9.6-alpine |
|
|
|
image: postgres:14-alpine |
|
|
|
shm_size: 256mb |
|
|
|
networks: |
|
|
|
- internal_network |
|
|
|
healthcheck: |
|
|
|
test: ["CMD", "pg_isready", "-U", "postgres"] |
|
|
|
volumes: |
|
|
|
- ./postgres:/var/lib/postgresql/data |
|
|
|
- ./postgres14:/var/lib/postgresql/data |
|
|
|
environment: |
|
|
|
- "POSTGRES_HOST_AUTH_METHOD=trust" |
|
|
|
|
|
|
|
redis: |
|
|
|
restart: always |
|
|
|