-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (34 loc) · 804 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
34 lines (34 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: "3"
services:
pg:
image: postgres
container_name: pg
restart: unless-stopped
networks:
- backbone
ports:
- 5432:5432
environment:
- POSTGRES_PASSWORD=passport
pg-admin:
image: dpage/pgadmin4
container_name: pg-admin
restart: unless-stopped
networks:
- backbone
ports:
- 5433:80
environment:
- PGADMIN_DEFAULT_EMAIL=root@example.com
- PGADMIN_DEFAULT_PASSWORD=passport
# rust:
# image: rust-app
# container_name: rust
# restart: unless-stopped
# networks:
# - backbone
# ports:
# - 8081:8080
networks:
backbone:
driver: bridge