-
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.
Merge pull request #5 from GeotrekCE/develop
New Docker system
- Loading branch information
Showing
9 changed files
with
39 additions
and
17 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,4 @@ | ||
IMAGE=ghcr.io/geotrekce/geotrek-rando-v3/geotrek-rando:latest | ||
PORT=8080 | ||
CUSTOMIZATION_DIRECTORY=./customization | ||
MEDIAS_DIRECTORY=./medias |
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,2 @@ | ||
.idea | ||
.env |
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 @@ | ||
# Changelog | ||
|
||
2.0.0 (unreleased) | ||
------------------ | ||
|
||
* Compatible with Geotrek-rando-v3 version 3.2.0 and more. | ||
* New build system with Docker Compose to install and customize a Geotrek-rando portal dynamically, without building it locally. | ||
* Addition of an optional ``.env`` file if you want to change the Docker image URL, the running port, or the ``customization`` and ``medias`` folders path | ||
|
||
1.0.0 (2021-04-29) | ||
------------------ | ||
|
||
First stable version of Geotrek-rando-v3-installer. | ||
Compatible with Geotrek-rando-v3 version 3.0.0 and more. |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Install Geotrek-rando | ||
|
||
This repository includes the dockerfile and the ``customization`` folder template to build your own Docker image of Geotrek-rando and install it on your own computer or server. | ||
This repository includes the ``docker-compose.yml`` file and the ``customization`` folder template to configure and run a Docker image of Geotrek-rando application on your own computer or server. | ||
|
||
See https://github.com/GeotrekCE/Geotrek-rando-v3 for installation and customization documentation. |
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 @@ | ||
2.0.0 |
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 +1,6 @@ | ||
{} | ||
{ | ||
"primary1": { | ||
"DEFAULT": "#272727", | ||
"light": "#4c4e4c" | ||
} | ||
} |
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 @@ | ||
{} |
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,10 @@ | ||
version: "2.3" | ||
services: | ||
nodeserver: | ||
image: ${IMAGE:-ghcr.io/geotrekce/geotrek-rando-v3/geotrek-rando:latest} | ||
restart: always | ||
ports: | ||
- "${PORT:-8080}:3000" | ||
volumes: | ||
- "${CUSTOMIZATION_DIRECTORY:-./customization}:/app/customization" | ||
- "${MEDIAS_DIRECTORY:-./medias}:/app/src/public/medias/" |