-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #359 from green-ecolution/release/v1.1.0
Release v1.1.0
- Loading branch information
Showing
411 changed files
with
65,382 additions
and
5,539 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
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
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
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
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,86 @@ | ||
services: | ||
db: | ||
image: postgis/postgis | ||
restart: always | ||
# set shared memory limit when using docker-compose | ||
shm_size: 128mb | ||
environment: | ||
POSTGRES_PASSWORD: postgres | ||
ports: | ||
- 5432:5432 | ||
networks: | ||
- app-network | ||
pgadmin: | ||
image: dpage/pgadmin4 | ||
restart: always | ||
ports: | ||
- 5050:80 | ||
volumes: | ||
- "./infra/pgadmin/servers.json:/pgadmin4/servers.json" | ||
environment: | ||
PGADMIN_DEFAULT_EMAIL: a@a.com | ||
PGADMIN_DEFAULT_PASSWORD: geheim | ||
PGADMIN_CONFIG_SERVER_MODE: "False" | ||
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: "False" | ||
networks: | ||
- app-network | ||
ors-app: | ||
image: openrouteservice/openrouteservice:v9.0.0 | ||
ports: | ||
- "8080:8082" | ||
- "9001:9001" | ||
user: "1000:1000" # Default is 1000:1000. make infra/up will override this to the actual user values | ||
volumes: | ||
- ./infra/ors:/home/ors | ||
environment: | ||
ors.engine.profile_default.build.source_file: /home/ors/files/sh.osm.pbf | ||
REBUILD_GRAPHS: false | ||
CONTAINER_LOG_LAVEL: INFO | ||
XMS: 256m | ||
XMX: 512m | ||
ADDITIONAL_JAVA_OPTS: "" | ||
deploy: | ||
resources: | ||
reservations: | ||
cpus: "1" | ||
memory: 256m | ||
limits: | ||
cpus: "1" | ||
memory: 512m | ||
networks: | ||
- app-network | ||
vroom: | ||
image: ghcr.io/vroom-project/vroom-docker:v1.14.0 | ||
ports: | ||
- 2525:3000 | ||
volumes: | ||
- ./infra/vroom:/conf | ||
environment: | ||
VROOM_ROUTER: ors | ||
networks: | ||
- app-network | ||
deploy: | ||
resources: | ||
reservations: | ||
cpus: "1" | ||
memory: 50m | ||
limits: | ||
cpus: "1" | ||
memory: 50m | ||
valhalla: | ||
image: ghcr.io/gis-ops/docker-valhalla/valhalla:latest | ||
ports: | ||
- "8002:8002" | ||
volumes: | ||
- ./infra/valhalla/custom_files:/custom_files | ||
deploy: | ||
resources: | ||
reservations: | ||
cpus: "1" | ||
memory: 256m | ||
limits: | ||
cpus: "2" | ||
memory: 1g | ||
networks: | ||
app-network: | ||
driver: bridge |
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,14 @@ | ||
{ | ||
"Servers": { | ||
"1": { | ||
"Name": "local db", | ||
"Group": "Green Ecolution", | ||
"Port": 5432, | ||
"Username": "postgres", | ||
"Host": "db", | ||
"SSLMode": "prefer", | ||
"MaintenanceDB": "postgres", | ||
"PasswordExecCommand": "echo 'postgres'" | ||
} | ||
} | ||
} |
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,42 @@ | ||
cliArgs: | ||
geometry: false # retrieve geometry (-g) | ||
planmode: false # run vroom in plan mode (-c) if set to true | ||
threads: 4 # number of threads to use (-t) | ||
explore: 5 # exploration level to use (0..5) (-x) | ||
limit: '1mb' # max request size | ||
logdir: '/..' # the path for the logs relative to ./src | ||
logsize: '100M' # max log file size for rotation | ||
maxlocations: 1000 # max number of jobs/shipments locations | ||
maxvehicles: 200 # max number of vehicles | ||
override: true # allow cli options override (-c, -g, -t and -x) | ||
path: '' # VROOM path (if not in $PATH) | ||
port: 3000 # expressjs port | ||
router: 'ors' # routing backend (osrm, libosrm or ors) | ||
timeout: 300000 # milli-seconds | ||
baseurl: '/' #base url for api | ||
routingServers: | ||
ors: | ||
driving-car: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' | ||
driving-hgv: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' | ||
cycling-regular: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' | ||
cycling-mountain: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' | ||
cycling-road: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' | ||
cycling-electric: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' | ||
foot-walking: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' | ||
foot-hiking: | ||
host: 'ors-app/ors/v2' | ||
port: '8082' |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
# .envrc | ||
|
||
use flake |
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
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
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
Oops, something went wrong.