Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
add missing quotation mark
Browse files Browse the repository at this point in the history
  • Loading branch information
odalys-dataport committed Jun 14, 2024
1 parent 4dca415 commit 45ac8f0
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions compose-files/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
version: "3.2"

services:


### nginx
#nginx:
# image: nginx
Expand Down Expand Up @@ -64,7 +62,7 @@ services:
volumes:
- ../scripts/mongo_setup.sh:/scripts/mongo_setup.sh
restart: "no"
entrypoint: [ bash", "/scripts/mongo_setup.sh" ]
entrypoint: ["bash", "/scripts/mongo_setup.sh"]

redis:
image: redis:${REDIS_DOCKER_TAG:-latest} ## change tag in version.env
Expand All @@ -89,8 +87,8 @@ services:
ports:
- "5432:5432"
volumes:
- 'data-calendar-postgres:/var/lib/postgresql/data'
- 'postgres-init:/docker-entrypoint-initdb.d'
- "data-calendar-postgres:/var/lib/postgresql/data"
- "postgres-init:/docker-entrypoint-initdb.d"
environment:
- POSTGRES_DB=schulcloud_calendar
- POSTGRES_USER=node
Expand Down Expand Up @@ -344,7 +342,7 @@ services:
dockerfile: Dockerfile
init: true
volumes:
- 'postgres-init:/docker-entrypoint-initdb.d'
- "postgres-init:/docker-entrypoint-initdb.d"
command: /bin/sh -c 'cp schema.sql /docker-entrypoint-initdb.d/01-schema.sql && cp example_data.sql /docker-entrypoint-initdb.d/02-data.sql'

selenium-hub:
Expand Down

0 comments on commit 45ac8f0

Please sign in to comment.