breezy-portugal-43538
04/07/2022, 10:57 AMdocker-compose-without-neo4j-m1.quickstart.yml
and I had modified the following settings:
postgres:
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin
container_name: postgres
environment:
- POSTGRES_DB=datahub
- POSTGRES_USER=datahub
- POSTGRES_PASSWORD=datahub
hostname: postgres
image: postgres:13
ports:
- 5432:5432
volumes:
- postgres-db-volume:/var/lib/postgresql/data
postgres-setup:
container_name: postgres-setup
depends_on:
- postgres
environment:
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_USER=datahub
- POSTGRES_PASSWORD=datahub
- POSTGRES_DB=datahub
hostname: postgres-setup
image: acryldata/datahub-postgres-setup:head
Is this a correct way of addressing the change? Could you help by suggesting on how to change the volume. what should it point to?dazzling-judge-80093
04/07/2022, 4:40 PMnutritious-bird-77396
04/07/2022, 5:43 PMmodern-artist-55754
04/08/2022, 12:35 PMplatform: linux/amd64
in for mysql service, and it works on the M1
mysql:
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin
container_name: mysql
environment:
- MYSQL_DATABASE=datahub
- MYSQL_USER=datahub
- MYSQL_PASSWORD=datahub
- MYSQL_ROOT_PASSWORD=datahub
hostname: mysql
image: mysql:5.7
platform: linux/amd64
ports:
- 3306:3306
volumes:
- ./docker/mysql/init.sql:/docker-entrypoint-initdb.d/init.sql
- mysqldata:/var/lib/mysql
dazzling-judge-80093
04/08/2022, 12:39 PMmariadb:10.5.8
little-megabyte-1074
breezy-portugal-43538
04/12/2022, 7:53 AMwonderful-egg-79350
05/12/2022, 6:45 AM