outbag/containers
Docker related files, including: docker-compose.yml for easy setup
- Dockerfile 100%
| app | build images from latest git source repo | |
| server | build images from latest git source repo | |
| .gitignore | fixed Dockerfiles | |
| .woodpecker.yml | Set platform to x64-only | |
| docker-compose.yml | build images from latest git source repo | |
| LICENSE | Added AGPL-3.0-only license | |
| README.md | build images from latest git source repo | |
Official Outbag Docker Images
Requirements
dockerdocker-compose- a proxy (optional, recommended)
Using prebuild images
There are no prebuild images available at the moment.
Manual setup
- Clone this repository
git clone https://gitlab.com/outbag/containers
- Open the
docker-compose.ymlfile with your favourite text editor and configure the options to your liking.- if you do not want to deploy the web app, remove the
appsection from the config
- if you do not want to deploy the web app, remove the
- Build the images
docker-compose build --no-cache
- Run
docker-compose up -dto download and start the server. To stop your server simply rundocker-compose downin the same directory. - Your server should now be available on
127.0.0.1:7223and the web ap on127.0.0.1:8080To stop it rundocker-compose downin the same folder.