Skip to content

Commit

Permalink
fix: disable unused docker dev tools
Browse files Browse the repository at this point in the history
  • Loading branch information
rflihxyz committed Dec 24, 2024
1 parent d8185bd commit c268c24
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ services:
NEXT_PUBLIC_POSTHOG_KEY: ${POSTHOG_KEY}
NEXT_PUBLIC_POSTHOG_HOST: ${POSTHOG_HOST}
NEXT_PUBLIC_DISTRIBUTION: ${DISTRIBUTION}
NEXT_PUBLIC_BACKEND_DOMAIN: http://localhost:3000
NEXT_PUBLIC_BACKEND_DOMAIN: https://localhost:3000
NEXT_PUBLIC_MAGIC_LINK_DOMAIN: ${NEXT_PUBLIC_MAGIC_LINK_DOMAIN}
NEXT_PUBLIC_WEBAPP_DOMAIN: ${NEXT_PUBLIC_WEBAPP_DOMAIN}
NEXT_PUBLIC_REDIRECT_WEBHOOK_INGRESS: ${REDIRECT_TUNNEL_INGRESS}
Expand All @@ -238,22 +238,22 @@ services:
# Developer tools #
# # # # # # # # # #

pgadmin:
image: dpage/pgadmin4
container_name: pgadmin4_container
restart: always
ports:
- "8888:80"
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: strong-password
networks:
- backend
depends_on:
postgres:
condition: service_healthy
volumes:
- pgadmin-data:/var/lib/pgadmin
# pgadmin:
# image: dpage/pgadmin4
# container_name: pgadmin4_container
# restart: always
# ports:
# - "8888:80"
# environment:
# PGADMIN_DEFAULT_EMAIL: [email protected]
# PGADMIN_DEFAULT_PASSWORD: strong-password
# networks:
# - backend
# depends_on:
# postgres:
# condition: service_healthy
# volumes:
# - pgadmin-data:/var/lib/pgadmin

# ngrok:
# image: ngrok/ngrok:latest
Expand Down

0 comments on commit c268c24

Please sign in to comment.