run bibliome with docker
|
maren
dc0de7abfa
fix app url bug
laravel actually requires full URL including port in order to "authenticate" API requests. without port specified in APP_URL, bibliome will be wonky when running locally |
||
|---|---|---|
| config | increase laravel queue worker retry max | |
| .gitignore | init | |
| bibliome-local.yml | init | |
| bibliome.Dockerfile | update codday to latest | |
| env.local | fix app url bug | |
| LICENSE.txt | init | |
| README.md |
clarify that sudoless docker access is needed
|
|
| run.sh | init | |
bibliome, but docker
this repository is docker things for running bibliome here and abroad
run bibliome locally (on linux)
this is not a production-ready deployment setup
get set up (on linux)
- install docker
- add your user to the docker group
- run these commands in a terminal:
git clone https://codeberg.org/bibliome/bibliome-docker.git
cd bibliome-docker
git clone https://codeberg.org/bibliome/bibliome.git
now you can run it locally (on linux)
run locally:
cp env.local .env
./run.sh
migrations may or may not fail. either way, open another terminal and exec into the bibliome container and run a php command that you only have to run once on a fresh install of bibliome:
container=$(docker ps | grep bibliome-local | awk '{print 1ドル}')
docker exec -it $container bash
php artisan migrate:fresh --seed
exit
go to localhost:8080 in a browser to interact with bibliome!
this is not a production-ready deployment setup
run bibliome in production (on linux)
COMING SOON