3
1
Fork
You've already forked bibliome-docker
0
run bibliome with docker
  • Dockerfile 86.1%
  • Shell 13.9%
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
2025年08月07日 16:39:18 -04:00
config increase laravel queue worker retry max 2024年07月21日 22:59:44 -04:00
.gitignore init 2024年05月10日 23:04:32 -04:00
bibliome-local.yml init 2024年05月10日 23:04:32 -04:00
bibliome.Dockerfile update codday to latest 2024年07月11日 22:37:43 -04:00
env.local fix app url bug 2025年08月07日 16:39:18 -04:00
LICENSE.txt init 2024年05月10日 23:04:32 -04:00
README.md clarify that sudoless docker access is needed 2025年08月07日 16:38:48 -04:00
run.sh init 2024年05月10日 23:04:32 -04:00

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)

  1. install docker
  2. add your user to the docker group
  3. 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