forked from itsumura-h/nim-basolato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
69 lines (62 loc) · 1.38 KB
/
docker-compose.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
version: '3'
services:
redis:
image: redis:alpine
tty: true
app-alpine:
build: ./docker/nim/alpine
tty: true
ports:
- 9000:5000
volumes:
- .:/root/project
# app-ubuntu:
# build: ./docker/nim/ubuntu
# tty: true
# ports:
# - 9001:5000
# volumes:
# - .:/root/project
# app-debian:
# build: ./docker/nim/debian
# tty: true
# ports:
# - 9002:5000
# volumes:
# - .:/root/project
# app-centos:
# build: ./docker/nim/centos
# tty: true
# privileged: true
# ports:
# - 9003:5000
# volumes:
# - .:/root/project
# frontend:
# build:
# context: .
# dockerfile: ./docker/frontend/Dockerfile
# tty: true
# ports:
# - 3000:3000
# volumes:
# - ./examples/todo_app.bk/frontend:/root/project
tfb-database-my:
image: mariadb
tty: true
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: hello_world
MYSQL_USER: benchmarkdbuser
MYSQL_PASSWORD: benchmarkdbpass
TZ: Asia/Tokyo
default_authentication_plugin: mysql_native_password
tfb-database-pg:
image: postgres:alpine
tty: true
environment:
POSTGRES_DB: hello_world
POSTGRES_USER: benchmarkdbuser
POSTGRES_PASSWORD: benchmarkdbpass
TZ: Asia/Tokyo