Skip to content

Commit 8522fe3

Browse files
committed
add: docker compose
1 parent e02bfb1 commit 8522fe3

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
services:
2+
progphilbot-db:
3+
image: postgres:18
4+
container_name: progphilbot-db
5+
environment:
6+
POSTGRES_USER: postgres
7+
POSTGRES_PASSWORD: secret
8+
POSTGRES_DB: progphilbot-db
9+
ports:
10+
- "5434:5432"
11+
volumes:
12+
- progphilbot-volume:/var/lib/postgresql
13+
networks:
14+
- progphilbot-network
15+
16+
volumes:
17+
progphilbot-volume:
18+
19+
networks:
20+
progphilbot-network:

0 commit comments

Comments
 (0)