outbag/containers
2
0
Fork
You've already forked containers
0
Docker related files, including: docker-compose.yml for easy setup
  • Dockerfile 100%
2024年03月02日 10:31:57 +01:00
app build images from latest git source repo 2024年03月02日 10:31:57 +01:00
server build images from latest git source repo 2024年03月02日 10:31:57 +01:00
.gitignore fixed Dockerfiles 2022年08月27日 17:14:18 +02:00
.woodpecker.yml Set platform to x64-only 2023年03月09日 20:05:23 +01:00
docker-compose.yml build images from latest git source repo 2024年03月02日 10:31:57 +01:00
LICENSE Added AGPL-3.0-only license 2023年01月23日 14:10:50 +01:00
README.md build images from latest git source repo 2024年03月02日 10:31:57 +01:00

Official Outbag Docker Images

Requirements

  • docker
  • docker-compose
  • a proxy (optional, recommended)

Using prebuild images

There are no prebuild images available at the moment.

Manual setup

  1. Clone this repository
git clone https://gitlab.com/outbag/containers
  1. Open the docker-compose.yml file with your favourite text editor and configure the options to your liking.
    • if you do not want to deploy the web app, remove the app section from the config
  2. Build the images
docker-compose build --no-cache
  1. Run docker-compose up -d to download and start the server. To stop your server simply run docker-compose down in the same directory.
  2. Your server should now be available on 127.0.0.1:7223 and the web ap on 127.0.0.1:8080 To stop it run docker-compose down in the same folder.