-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b47b021
commit ea4fe98
Showing
7 changed files
with
21 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
version: '3' | ||
services: | ||
nginx: | ||
nginx: # should be equal to the name of the folder name this compose is in | ||
image: nginx:1.15-alpine | ||
volumes: | ||
- ./dev/:/etc/nginx/conf.d | ||
ports: | ||
- 8080:80 | ||
restart: unless-stopped | ||
networks: | ||
networks: # this needs to be added as we spin off a default network 'trufi-server' to connect this module to the reverse proxy nginx | ||
default: | ||
name: trufi-server |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
version: '3' | ||
services: | ||
otp: | ||
otp: # should be equal to the name of the folder name this compose is in | ||
build: | ||
context: ./$otpversion | ||
dockerfile: Dockerfile | ||
restart: unless-stopped | ||
volumes: | ||
- ./data:/app/graphs | ||
networks: | ||
- ./data:/app/graphs # the name of the folder on the host needs to have the name 'data' and it should contain the files you want to persist between docker container builds. This makes it easier to add (updated) data generated with https://github.com/trufi-association/trufi-server-resources | ||
networks: # this needs to be added as we spin off a default network 'trufi-server' to connect this module to the reverse proxy nginx | ||
default: | ||
name: trufi-server |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
version: '3' | ||
services: | ||
photon: | ||
photon: # should be equal to the name of the folder name this compose is in | ||
build: | ||
context: ./0.3.5 | ||
dockerfile: ./Dockerfile | ||
restart: unless-stopped | ||
volumes: | ||
- ./data:/app/photon_data | ||
networks: | ||
- ./data:/app/photon_data # the name of the folder on the host needs to have the name 'data' and it should contain the files you want to persist between docker container builds. This makes it easier to add (updated) data generated with https://github.com/trufi-association/trufi-server-resources | ||
networks: # this needs to be added as we spin off a default network 'trufi-server' to connect this module to the reverse proxy nginx | ||
default: | ||
name: trufi-server |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
version: '3' | ||
services: | ||
static-maps: | ||
static-maps: # should be equal to the name of the folder name this compose is in | ||
image: nginx:1.15-alpine | ||
volumes: | ||
- ./nginx:/etc/nginx/conf.d | ||
- ./data:/var/www/maps | ||
- ./data:/var/www/maps # the name of the folder on the host needs to have the name 'data' and it should contain the files you want to persist between docker container builds. This makes it easier to add (updated) data generated with https://github.com/trufi-association/trufi-server-resources | ||
restart: unless-stopped | ||
networks: | ||
networks: # this needs to be added as we spin off a default network 'trufi-server' to connect this module to the reverse proxy nginx | ||
default: | ||
name: trufi-server |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
version: '3' | ||
services: | ||
tileserver: | ||
tileserver: # should be equal to the name of the folder name this compose is in | ||
image: maptiler/tileserver-gl | ||
command: --port 80 --config /config/config.json --verbose | ||
volumes: | ||
- ./data:/data | ||
- ./data:/data # the name of the folder on the host needs to have the name 'data' and it should contain the files you want to persist between docker container builds. This makes it easier to add (updated) data generated with https://github.com/trufi-association/trufi-server-resources | ||
- ./config:/config | ||
restart: unless-stopped | ||
networks: | ||
networks: # this needs to be added as we spin off a default network 'trufi-server' to connect this module to the reverse proxy nginx | ||
default: | ||
name: trufi-server |