Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/popomore/local-env
Service in Local Environment
https://github.com/popomore/local-env
Last synced: about 2 months ago
JSON representation
Service in Local Environment
- Host: GitHub
- URL: https://github.com/popomore/local-env
- Owner: popomore
- Created: 2023-12-22T11:40:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-14T08:29:31.000Z (5 months ago)
- Last Synced: 2024-10-16T21:23:19.648Z (3 months ago)
- Language: Dockerfile
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Service in Local Environment
Start services with zero configuration locally
> The docker image has only been tested on Mac
## Requires
- Docker
## Usage
- Create a .env file, see each service for specific configurations
- Use `make deploy` to start services with one command## Service
### mysql
Configuration files can be placed in the `mysql/conf` directory
Set environment variables in `.env`
- MYSQL_ROOT_PASSWORD: Set mysql password
Exposed ports
- 3306
### redis
Configuration files can be placed in the `redis/conf` directory
Set environment variables in `.env`
- REDIS_PASSWORD: Set redis password
Exposed ports
- 6379
### minio
Set environment variables in `.env`
- MINIO_ROOT_PASSWORD: Set minio password
- MINIO_ROOT_USER: Set minio userExposed ports
- 9000
- 9001: Management console### chroma
Exposed port
- 10001
### postgre
Set environment variables in `.env`
- POSTGRES_USER: Set postgre user
- POSTGRES_PASSWORD: Set postgre passwordExposed ports
- 5432