-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
50 lines (44 loc) · 1020 Bytes
/
docker-compose.dev.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: "3"
services:
# app:
# build:
# context: .
# dockerfile: ./.docker/kharon.dockerfile
# ports:
# - 8000:8000
# environment:
# APP_DATABASE_URI: mongodb://root:example@mongo:27017
# mongo:
# image: mongo
# restart: unless-stopped
# ports:
# - 27017:27017
# environment:
# MONGO_INITDB_ROOT_USERNAME: root
# MONGO_INITDB_ROOT_PASSWORD: example
# mongo-express:
# image: mongo-express
# restart: unless-stopped
# ports:
# - 8081:8081
# environment:
# ME_CONFIG_MONGODB_ADMINUSERNAME: root
# ME_CONFIG_MONGODB_ADMINPASSWORD: example
db:
image: postgres:alpine
restart: unless-stopped
environment:
POSTGRES_USER: kharon
POSTGRES_PASSWORD: kharon
POSTGRES_DB: kharon
ports:
- 5432:5432
volumes:
- postgres-data:/var/lib/postgresql/data
adminer:
image: adminer
restart: unless-stopped
ports:
- 8080:8080
volumes:
postgres-data: