Skip to content

Commit d6e31a9

Browse files
committed
chore: fix compose file
1 parent 09c6142 commit d6e31a9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
.envrc
33
reports/
44

5+
.volumes/
6+
57
# Byte-compiled / optimized / DLL files
68
__pycache__/
79
*.py[cod]

docker-compose.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
POSTGRES_USER: speckle
1414
POSTGRES_PASSWORD: speckle
1515
volumes:
16-
- postgres-data:/var/lib/postgresql/data/
16+
- ./.volumes/postgres-data:/var/lib/postgresql/data/
1717
healthcheck:
1818
# the -U user has to match the POSTGRES_USER value
1919
test: ["CMD-SHELL", "pg_isready -U speckle"]
@@ -25,7 +25,7 @@ services:
2525
image: "redis:6.0-alpine"
2626
restart: always
2727
volumes:
28-
- redis-data:/data
28+
- ./.volumes/redis-data:/data
2929
healthcheck:
3030
test: ["CMD", "redis-cli", "--raw", "incr", "ping"]
3131
interval: 5s
@@ -37,7 +37,7 @@ services:
3737
command: server /data --console-address ":9001"
3838
restart: always
3939
volumes:
40-
- minio-data:/data
40+
- ./.volumes/minio-data:/data
4141
healthcheck:
4242
test:
4343
[
@@ -109,6 +109,7 @@ services:
109109
POSTGRES_PASSWORD: "speckle"
110110
POSTGRES_DB: "speckle"
111111
ENABLE_MP: "false"
112+
FRONTEND_ORIGIN: "http://127.0.0.1:8080"
112113

113114
networks:
114115
default:

0 commit comments

Comments
 (0)