-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(mtc docker): add Dockerfile, docker compose example
- Loading branch information
1 parent
9f37b66
commit 6475041
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM maven:3.8.7-openjdk-18-slim | ||
|
||
COPY . /datatools | ||
|
||
# Build jar | ||
WORKDIR /datatools | ||
RUN mvn package -DskipTests | ||
RUN cp target/dt*.jar /datatools/ | ||
RUN mv dt*.jar datatools-server.jar | ||
|
||
RUN mkdir -p /var/datatools_gtfs/gtfsplus | ||
|
||
# Launch server | ||
# This relies on a configuration volume and aws volume being present. See `docker-compose.yml`, or the example below | ||
# Try: docker run --publish 4000:4000 -v ~/config/:/config datatools-latest | ||
CMD ["java", "-XX:MaxRAMPercentage=95", "-jar", "datatools-server.jar", "/config/env.yml", "/config/server.yml"] | ||
EXPOSE 4000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: '3.8' | ||
services: | ||
datatools-server: | ||
build: ./ | ||
ports: | ||
- "4000:4000" | ||
volumes: | ||
- type: bind | ||
source: ./configurations/default/ | ||
target: /config | ||
- type: bind | ||
source: ~/.aws | ||
target: /root/.aws | ||
depends_on: | ||
- mongo | ||
- postgres | ||
mongo: | ||
image: mongo | ||
restart: always | ||
postgres: | ||
environment: | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
POSTGRES_USER: root | ||
POSTGRES_DB: dmtest | ||
image: postgres | ||
restart: always |