slovocast/docker-compose.yml

16 lines
293 B
YAML
Raw Normal View History

2024-02-16 23:19:58 +00:00
version: '3.9'
services:
database:
2024-04-23 02:30:14 +00:00
image: postgres:latest
2024-02-16 23:19:58 +00:00
environment:
2024-04-23 02:30:14 +00:00
POSTGRES_PASSWORD: password
POSTGRES_USER: slovocast
POSTGRES_DB: slovocast
2024-02-16 23:19:58 +00:00
ports:
2024-04-23 02:30:14 +00:00
- "5432:5432"
2024-02-16 23:19:58 +00:00
volumes:
2024-04-23 02:30:14 +00:00
- slovocast_db:/var/lib/postgresql/data/
2024-02-16 23:19:58 +00:00
volumes:
slovocast_db: