fix: use local fs volumes

This commit is contained in:
orion 2023-12-09 18:26:13 -06:00
parent 8b6035d315
commit e0a20dbb0a
Signed by: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -79,7 +79,7 @@ services:
restart: always restart: always
command: postgres -c 'max_connections=1000' command: postgres -c 'max_connections=1000'
volumes: volumes:
- pgdata:/var/lib/postgresql/data - ./pgdata:/var/lib/postgresql/data
env_file: env_file:
- .env - .env
environment: environment:
@ -93,7 +93,7 @@ services:
image: redis:6.2.7-alpine image: redis:6.2.7-alpine
restart: always restart: always
volumes: volumes:
- redisdata:/data - ./redisdata:/data
plane-minio: plane-minio:
container_name: plane-minio container_name: plane-minio
@ -101,7 +101,7 @@ services:
restart: always restart: always
command: server /export --console-address ":9090" command: server /export --console-address ":9090"
volumes: volumes:
- uploads:/export - ./uploads:/export
environment: environment:
MINIO_ROOT_USER: ${AWS_ACCESS_KEY_ID} MINIO_ROOT_USER: ${AWS_ACCESS_KEY_ID}
MINIO_ROOT_PASSWORD: ${AWS_SECRET_ACCESS_KEY} MINIO_ROOT_PASSWORD: ${AWS_SECRET_ACCESS_KEY}
@ -122,8 +122,3 @@ services:
- web - web
- api - api
- space - space
volumes:
pgdata:
redisdata:
uploads: