https://github.com/logchimp/docker
🚧 W.I.P Official LogChimp Docker image
https://github.com/logchimp/docker
docker docker-image logchimp
Last synced: 12 months ago
JSON representation
🚧 W.I.P Official LogChimp Docker image
- Host: GitHub
- URL: https://github.com/logchimp/docker
- Owner: logchimp
- License: mit
- Created: 2020-09-08T16:39:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-20T04:07:28.000Z (over 5 years ago)
- Last Synced: 2025-06-04T22:13:44.341Z (about 1 year ago)
- Topics: docker, docker-image, logchimp
- Language: Shell
- Homepage: https://logchimp.codecarrot.net/docs/install/docker
- Size: 8.79 KB
- Stars: 4
- Watchers: 3
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🚧 W.I.P LogChimp Docker image

### Deploy LogChimp site
Make sure to run the scripts in order from top to bottom.
Create a docker network which is shared between database and LogChimp app.
```sh
docker network create -d bridge logchimp_network
```
You can change the values of environment variable.
```sh
docker run -d \
--name db \
-p 5000:5432 \
--network=logchimp_network \
-e POSTGRES_DB=logchimp_db \
-e POSTGRES_USER=logchimp_user \
-e POSTGRES_PASSWORD=logchimp_password \
postgres:12.4
```
```sh
docker run -d \
--name lc \
-p 8080:8080 \
-p 3000:3000 \
--network=logchimp_network \
-e PG_HOST=db \
-e PG_USER=logchimp_user \
-e PG_DATABASE=logchimp_db \
-e PG_PASSWORD=logchimp_password \
-e PG_PORT=5432 \
-e SECRET_KEY=Fig8=Diq1 \
logchimp
```