Simplify compose file for Portainer compatibility

This commit is contained in:
Adolfo Delorenzo 2025-07-19 17:30:38 +00:00
parent 28a884d08a
commit b19b302720

View File

@ -1,7 +1,6 @@
services: services:
postgres: postgres:
image: postgres:16 image: postgres:16
container_name: postgres_db
restart: unless-stopped restart: unless-stopped
environment: environment:
POSTGRES_USER: postgres POSTGRES_USER: postgres
@ -12,12 +11,9 @@ services:
- postgres_data:/var/lib/postgresql/data - postgres_data:/var/lib/postgresql/data
ports: ports:
- "5432:5432" - "5432:5432"
networks:
- postgres_network
pgadmin: pgadmin:
image: dpage/pgadmin4:latest image: dpage/pgadmin4:latest
container_name: pgadmin
restart: unless-stopped restart: unless-stopped
environment: environment:
PGADMIN_DEFAULT_EMAIL: admin@example.com PGADMIN_DEFAULT_EMAIL: admin@example.com
@ -26,15 +22,9 @@ services:
- pgadmin_data:/var/lib/pgadmin - pgadmin_data:/var/lib/pgadmin
ports: ports:
- "8080:80" - "8080:80"
networks:
- postgres_network
depends_on: depends_on:
- postgres - postgres
volumes: volumes:
postgres_data: postgres_data:
pgadmin_data: pgadmin_data:
networks:
postgres_network:
driver: bridge