5 This guide will show you how to get akkoma working in a docker container,
6 if you want isolation, or if you run a distribution not supported by the OTP
9 If you want to migrate from or OTP to docker, check out [the migration guide](./migrating_to_docker_en.md).
11 ### Prepare the system
13 * Install docker and docker-compose
14 * [Docker](https://docs.docker.com/engine/install/)
15 * [Docker-compose](https://docs.docker.com/compose/install/)
16 * This will usually just be a repository installation and a package manager invocation.
17 * Clone the akkoma repository
18 * `git clone https://akkoma.dev/AkkomaGang/akkoma.git -b stable`
21 ### Set up basic configuration
24 cp docker-resources/env.example .env
25 echo "DOCKER_USER=$(id -u):$(id -g)" >> .env
28 This probably won't need to be changed, it's only there to set basic environment
29 variables for the docker-compose file.
31 ### Building the container
33 The container provided is a thin wrapper around akkoma's dependencies,
34 it does not contain the code itself. This is to allow for easy updates
35 and debugging if required.
38 ./docker-resources/build.sh
41 This will generate a container called `akkoma` which we can use
42 in our compose environment.
44 ### Generating your instance
48 ./docker-resources/manage.sh mix deps.get
49 ./docker-resources/manage.sh mix compile
50 ./docker-resources/manage.sh mix pleroma.instance gen
53 This will ask you a few questions - the defaults are fine for most things,
54 the database hostname is `db`, the database password is `akkoma`
55 (not auto generated), and you will want to set the ip to `0.0.0.0`.
57 Now we'll want to copy over the config it just created
60 cp config/generated_config.exs config/prod.secret.exs
63 ### Setting up the database
65 We need to run a few commands on the database container, this isn't too bad
68 docker-compose run --rm --user akkoma -d db
69 # Note down the name it gives here, it will be something like akkoma_db_run
70 docker-compose run --rm akkoma psql -h db -U akkoma -f config/setup_db.psql
71 docker stop akkoma_db_run # Replace with the name you noted down
74 Now we can actually run our migrations
77 ./docker-resources/manage.sh mix ecto.migrate
78 # this will recompile your files at the same time, since we changed the config
83 We're going to run it in the foreground on the first run, just to make sure
90 If everything went well, you should be able to access your instance at http://localhost:4000
92 You can `ctrl-c` out of the docker-compose now to shutdown the server.
94 ### Running in the background
100 ### Create your first user
102 If your instance is up and running, you can create your first user with administrative rights with the following task:
105 ./docker-resources/manage.sh mix pleroma.user new MY_USERNAME MY_EMAIL@SOMEWHERE --admin
108 And follow the prompts
112 This is a tad more complex in docker than on the host itself. It
114 You've got two options.
116 #### Running caddy in a container
118 This is by far the easiest option. It'll handle HTTPS and all that for you.
123 cp docker-resources/Caddyfile.example docker-resources/Caddyfile
126 Then edit the TLD in your caddyfile to the domain you're serving on.
128 Uncomment the `caddy` section in the docker-compose file,
129 then run `docker-compose up -d` again.
131 #### Running a reverse proxy on the host
133 If you want, you can also run the reverse proxy on the host. This is a bit more complex, but it's also more flexible.
135 Follow the guides for source install for your distribution of choice, or adapt
136 as needed. Your standard setup can be found in the [Debian Guide](../debian_based_en/#nginx)
140 All that's left is to set up your frontends.
142 The standard from-source commands will apply to you, just make sure you
143 prefix them with `./docker-resources/manage.sh`!
145 {! installation/frontends.include !}
147 ### Updating Docker Installs
151 ./docker-resources/build.sh
152 ./docker-resources/manage.sh mix deps.get
153 ./docker-resources/manage.sh mix compile
154 ./docker-resources/manage.sh mix ecto.migrate
155 docker-compose restart akkoma db
160 {! installation/further_reading.include !}
162 {! support.include !}