2021-08-06 01:07:15 +08:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
|
|
services:
|
2022-05-14 12:22:06 +02:00
|
|
|
postgres:
|
2023-04-29 07:36:39 +02:00
|
|
|
image: postgres:14-alpine
|
2021-08-06 01:07:15 +08:00
|
|
|
restart: unless-stopped
|
|
|
|
|
volumes:
|
2022-05-14 12:22:06 +02:00
|
|
|
- pg-data:/var/lib/postgresql/data
|
|
|
|
|
env_file: ./.env
|
2021-08-06 01:07:15 +08:00
|
|
|
ports:
|
|
|
|
|
- "5432:5432"
|
2022-05-14 12:22:06 +02:00
|
|
|
tty: true
|
|
|
|
|
|
|
|
|
|
redis:
|
2023-04-29 07:36:39 +02:00
|
|
|
image: redis:7-alpine
|
2022-05-14 12:22:06 +02:00
|
|
|
command: >
|
|
|
|
|
--maxmemory-policy noeviction
|
|
|
|
|
restart: unless-stopped
|
2021-09-25 18:56:54 +08:00
|
|
|
volumes:
|
2022-05-14 12:22:06 +02:00
|
|
|
- redis-data:/data
|
|
|
|
|
ports:
|
|
|
|
|
- "6379:6379"
|
|
|
|
|
tty: true
|
|
|
|
|
|
2021-08-06 01:07:15 +08:00
|
|
|
volumes:
|
2022-05-14 12:22:06 +02:00
|
|
|
pg-data:
|
|
|
|
|
redis-data:
|