Skip to content

Commit

Permalink
Merge pull request #45 from ve1ld/chore/add-hanuman-chalisa-seeder
Browse files Browse the repository at this point in the history
Add seeder for Hanuman Chalisa
  • Loading branch information
ks0m1c authored Mar 8, 2024
2 parents 3324248 + c611eac commit b4b59cd
Show file tree
Hide file tree
Showing 11 changed files with 563 additions and 441 deletions.
72 changes: 36 additions & 36 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
version: '3.8'

services:
postgres:
container_name: postgres_container
image: postgres
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-root}
PGDATA: /data/postgres
volumes:
- postgres:/data/postgres
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
ports:
- "5432:5432"
networks:
- postgres
restart: unless-stopped
# postgres:
# container_name: postgres_container
# image: postgres
# environment:
# POSTGRES_USER: ${POSTGRES_USER:-postgres}
# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-root}
# PGDATA: /data/postgres
# volumes:
# - postgres:/data/postgres
# healthcheck:
# test: ["CMD-SHELL", "pg_isready -U postgres"]
# interval: 10s
# timeout: 5s
# retries: 5
# ports:
# - "5432:5432"
# networks:
# - postgres
# restart: unless-stopped

pgadmin:
container_name: pgadmin_container
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-pgadmin4@pgadmin.org}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-root}
PGADMIN_CONFIG_SERVER_MODE: 'False'
volumes:
- pgadmin:/var/lib/pgadmin
# pgadmin:
# container_name: pgadmin_container
# image: dpage/pgadmin4
# environment:
# PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-pgadmin4@pgadmin.org}
# PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-root}
# PGADMIN_CONFIG_SERVER_MODE: 'False'
# volumes:
# - pgadmin:/var/lib/pgadmin

ports:
- "${PGADMIN_PORT:-5050}:80"
networks:
- postgres
restart: unless-stopped
# ports:
# - "${PGADMIN_PORT:-5050}:80"
# networks:
# - postgres
# restart: unless-stopped

minio1:
image: minio/minio:RELEASE.2022-05-08T23-50-31Z
Expand All @@ -53,9 +53,9 @@ services:
timeout: 20s
retries: 3

networks:
postgres:
driver: bridge
# networks:
# postgres:
# driver: bridge

volumes:
postgres:
Expand Down
Loading

0 comments on commit b4b59cd

Please sign in to comment.