Deploy and set up Docker Compose based web apps with Ansible
Project description
Docksible
About
This is a tool you can run locally to install a given web app via Docker Compose onto a remote VPS. Though not recommended for serious enterprise grade production environments, it is well suited to quickly spin up an off the cuff demo server, or even a small production server.
Warning
This tool is still under development and not stable yet. Until version 1.0 becomes available, things can and will break between releases.
Features
- WordPress
- Redmine (open source issue tracker)
- SSL
- SSH proxy to tunnel hidden services like database
- Hopefully more soon ;-)
Requirements
- Local: Unix with Python 3.9 or newer. Tested this on Gentoo and Ubuntu Linux. Might work on macOS, but I don't know. Won't work on Windows, because it uses Ansible under the hood, which AFAIK is not supported for Windows.
- Remote: VPS running Ubuntu, or maybe other Debian based flavor, reachable via SSH. It should probably work on all Debian distros, but I have only tested on Ubuntu.
Installing
Intall with Pip: python -m pip install docksible
Usage
These examples should be self explanatory:
docksible user@example.com wordpress --letsencrypt --email admin@example.comdocksible user@example.com redmine --letsencrypt --email admin@example.com
Run the --help flag for all supported options.
Using the SSH proxy
You can include a simple SSH proxy
into your app's Docker network, by passing the --ssh-proxy flag. This will drop in
a small container that you can use to port forward some hidden services, like the
database. Here's how to do it:
- Include
--ssh-proxyin the Docksible command (ex:docksible user@host wordpress --ssh-proxy) - Set up the proxy service's
authorized_keysfile. This will be improved in the future, but until then:- SSH into your server as root
- Copy root's
.ssh/authorized_keysintodocksible-volumes/ssh-proxy-data/ - Shell into the proxy container, and basically
chown -R proxy_user:proxy_user /home/proxy_user. This could also be improved, but for now, just needs to be done once.
- Now the proxy service is ready to use. For example:
- Set up the tunnel to proxy the database:
ssh -p 2222 proxy_user@yourserver.com -L 9000:docksible_db:3306- Connect to the database:
mysql -u your_db_user -p --port=9000 --host=localhost --protocol=TCP
Known issues
When setting up a web app on Ubuntu 24.10 and newer, and doing so with the
--letsencrypt flag, which is recommended, you must also set the
--apparmor-workaround flag.
This because it seems that in Ubuntu 24.10 and newer, there is an issue with AppArmor that prevents Docker containers from being restarted, even when doing so as root, which occurs a few times in the Let's Encrypt role.
Setting the flag --apparmor-workaround will result in the raw command
aa-remove-unknown being run on the server everytime before a container
gets restarted. This workaround fixes the issue for now, but it is not
elegant. Doing this on older versions results in a different error,
hence the CLI option.
Altogether, it's tech debt, a temporary workaround, and will be removed soon. Also, the Let's Encrypt handling will be refactored and improved altogether. See these issues for more info:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file docksible-0.10.0.tar.gz.
File metadata
- Download URL: docksible-0.10.0.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b69dcf22125e4ad937bbed42946ae89611c13baa75017179af36defcb8c1e05
|
|
| MD5 |
096308fc807c0f6e040a9f33a46715ae
|
|
| BLAKE2b-256 |
eaaf7063c981c2d80ec63d769df04e058e870ff06fc7b471783e2f3f08310c74
|
File details
Details for the file docksible-0.10.0-py3-none-any.whl.
File metadata
- Download URL: docksible-0.10.0-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a547a66a0a52263c0ea0407b45c153977e3a71e9a25c55508361c82afd58f86
|
|
| MD5 |
4f5c7cea3e85a5dbf9e258d796c5be11
|
|
| BLAKE2b-256 |
7e29d1c22fe5edb46128fbdb88e56f3a94f38bbbe26f0a71da2d4453c7b864ed
|