-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (47 loc) · 964 Bytes
/
docker-compose.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
version: '3'
services:
server:
image: bigbutton-server
build:
context: ./
dockerfile: Dockerfile
depends_on:
- redis
- postgres
environment:
- NODE_ENV=production
restart: unless-stopped
ports:
- 8011:3000
# app:
# image: bigbutton-app
# build:
# context: ./app
# dockerfile: Dockerfile
# restart: unless-stopped
# volumes:
# - ./app/nginx.conf:/etc/nginx/conf.d/default.conf:ro
# ports:
# - "8011:80"
postgres:
image: postgres
restart: unless-stopped
environment:
POSTGRES_PASSWORD: example
volumes:
- ./data/postgres:/var/lib/postgresql/data
ports:
- 5432:5432
redis:
image: redis
restart: unless-stopped
ports:
- 6379:6379
command: ["redis-server", "--appendonly", "yes"]
volumes:
- ./data/redis:/data
adminer:
image: adminer
restart: unless-stopped
ports:
- 8082:8080