You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
349 B
16 lines
349 B
services: |
|
postgres: |
|
image: postgres:16-alpine |
|
container_name: brandbook_postgres |
|
restart: unless-stopped |
|
environment: |
|
POSTGRES_USER: brandbook |
|
POSTGRES_PASSWORD: brandbook |
|
POSTGRES_DB: brandbook |
|
ports: |
|
- "5434:5432" |
|
volumes: |
|
- postgres_data:/var/lib/postgresql/data |
|
|
|
volumes: |
|
postgres_data:
|
|
|