services: db: image: postgres restart: always environment: POSTGRES_PASSWORD: mysecretpassword123 volumes: - pgdata:/var/lib/postgresql/data ports: - "5432:5432" adminer: image: adminer restart: always ports: - 8080:8080 volumes: pgdata: