commit 6680cf2ea655c16fb06b87301182bdfbee8f2907 Author: Tangent Date: Sun Dec 21 02:04:31 2025 +0000 Add cosmos-server/docker-compose.yml diff --git a/cosmos-server/docker-compose.yml b/cosmos-server/docker-compose.yml new file mode 100644 index 0000000..06f9191 --- /dev/null +++ b/cosmos-server/docker-compose.yml @@ -0,0 +1,18 @@ +# place this where you want to keep the config file +# WARNING: Cosmos Cloud sets up a database without allowing you to configure its volumes, +# so this setup will not be self-contained. + +version: '3.7' +services: + cosmos-server: + image: azukaar/cosmos-server:latest + container_name: cosmos-server + hostname: cosmos-server + restart: always + privileged: true + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - /var/rub/dbus/system_bus_socket:/var/run/dbus/system_bus_socket + - /:/mnt/host + - ./config:/config # official docs place the config file at /var/lib/cosmos + network_mode: host