diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..a047a9475d58e13a9b65c3e7f237c80f8b05ea2d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea/ +__pycache__/ \ No newline at end of file diff --git a/ldvspec/docker/docker-compose-postgres-dev.yml b/ldvspec/docker/docker-compose-postgres-dev.yml deleted file mode 100644 index 3ccc64915ec31adf4457150512ad192ca56fcc96..0000000000000000000000000000000000000000 --- a/ldvspec/docker/docker-compose-postgres-dev.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: "3.7" -services: - - ldv-spec-db: - image: postgres:14 - container_name: ldv-spec-postgres - expose: - - "5433" - ports: - - "5433:5432" - env_file: - - $HOME/shared/ldvspec.env - environment: - POSTGRES_PASSWORD: "secret" - POSTGRES_USER: "postgres" - POSTGRES_DB: "ldv-spec-db" - volumes: - - ldv-spec-db:/var/lib/postgresql/data - restart: always - -volumes: - ldv-spec-db: \ No newline at end of file