Add docker-compose.yml to gitignore
ci/woodpecker/pr/build-amd64 Pipeline is pending Details
ci/woodpecker/pr/build-arm64 Pipeline is pending Details
ci/woodpecker/pr/docs Pipeline is pending Details
ci/woodpecker/pr/test Pipeline is pending Details

The docker-compose.yml file is likely to be edited quite extensively by
admins when setting up an instance. To make it easier to do upgrades
down the line, it should be ignored by git.

Instead we should provide the existing docker-compose.yml as a sample
config and update the docs to have the user copy it over to the root
directory to edit it themselves.
This commit is contained in:
Norm 2023-08-06 09:22:11 -04:00
parent 59af68c600
commit da89d21332
4 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -78,3 +78,4 @@ docs/venv
# docker stuff
docker-db
*.iml
docker-compose.yml

View File

@ -28,6 +28,11 @@ echo "DOCKER_USER=$(id -u):$(id -g)" >> .env
This probably won't need to be changed, it's only there to set basic environment
variables for the docker compose file.
Next, copy over the `docker-compose.yml` file to the main directory:
```bash
cp docker-resources/docker-compose.yml docker-compose.yml
```
### Building the container
The container provided is a thin wrapper around akkoma's dependencies,

View File

@ -28,6 +28,11 @@ git clone https://akkoma.dev/AkkomaGang/akkoma.git -b stable
cd akkoma
```
Copy `docker-compose.yml` over to the root directory
```bash
cp docker-resources/docker-compose.yml docker-compose.yml
```
### Back up your old database
Change the database name as needed