.. | ||
docker-compose.yml | ||
docker-entrypoint.sh | ||
README.md |
Containerized Environment
The Firefish repo comes with a new containerized environment to help make development!
Prerequisites
- Latest Docker installation
- Alternatively, you can use Podman and Podman Compose.
- The following ports are not in use
- 3030
- 25432
- 26379
Start up the environment
- Download the
dev/docker
directory and executechmod +x docker-entrypoint.sh
.- Alternatively, you can manually run
git clone https://firefish.dev/firefish/firefish.git && cd firefish
to fetch needed files, or let the script take care of itself.
- Alternatively, you can manually run
- Open
docker-compose.yml
and setURL
to the URL you want to use (or leave it tohttp://localhost:3030
). - Run
docker compose up
. This will build the environment, dependencies and prepare the needed config files.- If you use Podman, you should run
podman-compose up
instead.
- If you use Podman, you should run
- Wait until the following message shows up.
DONE * [core boot] All workers started DONE * [core boot] Now listening on port 3030 on https://your_firefish_url.example.com
- A fresh Firefish environment is created on the URL you have set!
When you want to restart the dev server, you just need to terminate the process (a.k.a. press Ctrl+C
) and run docker compose up
again.