diff --git a/compose.yaml b/compose.yaml index a7036b4..2eb661d 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,16 +1,15 @@ services: - db: - image: postgres - restart: always - shm_size: 128mb - networks: - - bragi-local + postgres: + image: postgres:16 + container_name: postgres + networks: bragi-local + restart: unless-stopped environment: - POSTGRES_PASSWORD: ${PASSWORD} POSTGRES_USER: ${USER} -# ports: -# - '5432:5432' - volumes: + POSTGRES_PASSWORD: ${PASSWORD} +# ports: +# - "5432:5432" + volumes: - /opt/91_DATABASE/postgres:/var/lib/postgresql/data adminer: