-
Notifications
You must be signed in to change notification settings - Fork 33
/
docker-compose.yml
70 lines (65 loc) · 1.71 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
services:
oba_bundler:
build:
context: ./bundler
volumes:
- ./bundle:/bundle
environment:
- GTFS_URL
oba_database:
image: mysql:8.4
container_name: oba_database
environment:
MYSQL_ROOT_PASSWORD: Ins3cure!
MYSQL_DATABASE: oba_database
MYSQL_USER: oba_user
MYSQL_PASSWORD: oba_password
ports:
- "3306:3306"
volumes:
- type: volume
source: mysql-data
target: /var/lib/mysql
restart: always
oba_database_pg:
image: postgres:15
container_name: oba_database_pg
environment:
POSTGRES_USER: oba_user
POSTGRES_PASSWORD: oba_password
POSTGRES_DB: oba_database
ports:
- "5432:5432"
volumes:
- type: volume
source: pg-data
target: /var/lib/postgresql/data
restart: always
oba_app:
container_name: oba_app
depends_on:
- oba_database
# - oba_database_pg
build:
context: ./oba
environment:
- JDBC_URL=jdbc:mysql://oba_database:3306/oba_database
- JDBC_DRIVER=com.mysql.cj.jdbc.Driver
# - JDBC_URL=jdbc:postgresql://oba_database_pg:5432/oba_database
# - JDBC_DRIVER=org.postgresql.Driver
- JDBC_USER=oba_user
- JDBC_PASSWORD=oba_password
- TEST_API_KEY=test # For test only, remove in production
- TZ=America/Los_Angeles
volumes:
# Share the host's `bundle` directory
# with the filesystem of the OBA service.
- ./bundle:/bundle
ports:
# Access the webapp on your host machine at a path like
# http://localhost:8080/onebusaway-api-webapp/api/where/agency/${YOUR_AGENCY}.json?key=TEST
- "8080:8080"
# restart: always
volumes:
mysql-data:
pg-data: