You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having an issue with the iasql container regarding data persistence when using Docker Compose. I am trying to persist PostgreSQL data to my local storage.
The iasql container successfully starts and creates data in the local persistence volume, but upon restart, the connection to AWS and data are not restored.
Below is the Docker Compose script that I have been using:
Hi,
I'm having an issue with the iasql container regarding data persistence when using Docker Compose. I am trying to persist PostgreSQL data to my local storage.
The iasql container successfully starts and creates data in the local persistence volume, but upon restart, the connection to AWS and data are not restored.
Below is the Docker Compose script that I have been using:
version: '3.8'
services:
iasql:
image: iasql/iasql
ports:
- "9876:9876"
- "5432:5432"
volumes:
- <path_to_your_local_folder>:/var/lib/postgresql/14/main
environment:
- IASQL_ENV=ci
container_name: iasql
Is there something missing or incorrect in my configuration that is causing this problem? Any guidance would be greatly appreciated.
The text was updated successfully, but these errors were encountered: