Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rainlanguage/rain.dex.solve
https://github.com/rainlanguage/rain.dex.solve
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rainlanguage/rain.dex.solve
- Owner: rainlanguage
- Created: 2024-04-06T14:28:40.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-13T20:11:51.000Z (10 months ago)
- Last Synced: 2024-04-14T02:19:24.964Z (10 months ago)
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rain.dex.solve
This repo composes various options for solving Raindex. By design there are no
implementations in this repo## Docker compose
Pruning orphans is useful if we accidentally modify the compose file while
containers are still running.
E.g. if we git pull before pulling them down.Start:
```
docker compose up -d --remove-orphans
```Stop
```
docker compose down
```## Docker volumes
This docker compose uses external volumes so they have to be created manually.
```
volume_path=/absolute/path
volume_name=foo-volume
docker volume create --driver local --opt type=none --opt device="$volume_path" --opt o=bind $volume_name
```