-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
1 changed file
with
10 additions
and
4 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 |
---|---|---|
@@ -1,15 +1,21 @@ | ||
## Development Mode | ||
# Development Mode | ||
|
||
- Web Api | ||
|
||
## Web Api | ||
|
||
Make a coppy of the enviroment files `envs/.env.web.example` file and name it `envs/.env.web`. | ||
|
||
```sh | ||
docker compose -f compose/web.yml up memcached | ||
docker compose -f compose/web.yml build | ||
docker compose -f compose/web.yml up db -d | ||
docker compose -f compose/web.yml up memcached -d | ||
docker compose -f compose/web.yml run --service-ports web bash | ||
``` | ||
|
||
- Tiler server | ||
## Tiler server | ||
Make a coppy of the enviroment files `envs/.env.tiler.example` file and name it `envs/.env.tiler`. | ||
|
||
```sh | ||
docker compose -f compose/tiler.yml build | ||
docker compose -f compose/tiler.yml run --service-ports tiler bash | ||
``` |