Packages
Docker¶
Docker images are created with the following tags:
latest: latest stable versionmajor,major.minorandmajor.minor.revtagssha-HASH: git hash of the commit used for the buildedge: unstable development version
Each tag is suffixed with the used distro (e.g. alpine or ubuntu).
Per default only alpine is generated.
It is recommended to use docker compose:
Example docker compose fil with two databases and a backup runner container
Run a custom command:
services:
wodore-backend:
image: ghcr.io/wodore/wodore-backend:latest
restart: unless-stopped
container_name: wodore-backend
$ docker compose up # start services
$ docker compose run wodore-backend [OPTIONS] COMMAND [ARGS]... # (1)!
- Run
db-backup-runnersubcommands.