Skip to content

Commit 36d73cc

Browse files
Docker Compose File for Postgres
Super awesome yaml file!
1 parent 255a019 commit 36d73cc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docker-compose.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Use postgres/example user/password credentials
2+
version: '3.1'
3+
4+
services:
5+
6+
db:
7+
image: postgres:latest
8+
restart: always
9+
environment:
10+
POSTGRES_PASSWORD: password123
11+
POSTGRES_USER: postgresthing
12+
13+
adminer:
14+
image: adminer:latest
15+
restart: always
16+
ports:
17+
- 8080:8080
18+

0 commit comments

Comments
 (0)