15 lines
No EOL
280 B
YAML
15 lines
No EOL
280 B
YAML
services:
|
|
postgres:
|
|
image: postgres:17.4-alpine3.21
|
|
restart: always
|
|
shm_size: 128mb
|
|
environment:
|
|
- POSTGRES_PASSWORD=test
|
|
- POSTGRES_USER=test
|
|
ports:
|
|
- 5432:5432
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
ports:
|
|
- 8080:8080 |