Skip to content

Commit 4e6bf6b

Browse files
authored
Merge pull request coollabsio#3762 from djsisson/fix-reactive-resume-template
fix reactive resume template
2 parents 74571d9 + 8fd103c commit 4e6bf6b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

templates/compose/reactive-resume.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ services:
1010
environment:
1111
- SERVICE_FQDN_REACTIVERESUME_3000
1212
- PUBLIC_URL=$SERVICE_FQDN_REACTIVERESUME
13-
- STORAGE_URL=http://minio
13+
- 'STORAGE_URL=${SERVICE_FQDN_MINIO}/default'
1414
- DATABASE_URL=postgresql://$SERVICE_USER_POSTGRES:$SERVICE_PASSWORD_POSTGRES@postgres:5432/${POSTGRES_DB:-postgres}
1515
- ACCESS_TOKEN_SECRET=$SERVICE_PASSWORD_ACCESSTOKEN
1616
- REFRESH_TOKEN_SECRET=$SERVICE_PASSWORD_REFRESHTOKEN
1717
- CHROME_TOKEN=$SERVICE_PASSWORD_CHROMETOKEN
18-
- CHROME_URL=ws://chrome:3000
18+
- CHROME_URL=ws://chrome:3000/chrome
1919
- REDIS_URL=redis://redis:6379
2020
- STORAGE_ENDPOINT=minio
2121
- STORAGE_PORT=9000
@@ -24,8 +24,8 @@ services:
2424
- STORAGE_ACCESS_KEY=$SERVICE_USER_MINIO
2525
- STORAGE_SECRET_KEY=$SERVICE_PASSWORD_MINIO
2626
- STORAGE_USE_SSL=false
27-
- DISABLE_SIGNUPS=$SERVICE_DISABLE_SIGNUPS
28-
- DISABLE_EMAIL_AUTH=$SERVICE_DISABLE_EMAIL_AUTH
27+
- 'DISABLE_SIGNUPS=${SERVICE_DISABLE_SIGNUPS:-false}'
28+
- 'DISABLE_EMAIL_AUTH=${SERVICE_DISABLE_EMAIL_AUTH:-false}'
2929
depends_on:
3030
- postgres
3131
- minio
@@ -45,9 +45,10 @@ services:
4545
retries: 10
4646

4747
minio:
48-
image: quay.io/minio/minio:latest
48+
image: minio/minio
4949
command: server /data --console-address ":9001"
5050
environment:
51+
- SERVICE_FQDN_MINIO_9000
5152
- MINIO_ROOT_USER=$SERVICE_USER_MINIO
5253
- MINIO_ROOT_PASSWORD=$SERVICE_PASSWORD_MINIO
5354
volumes:

0 commit comments

Comments
 (0)