renames caddy folder, fixes readme command, lints docker compose files

This commit is contained in:
2025-08-20 10:45:49 +02:00
parent 662ea8f1ee
commit 4f544a80bd
4 changed files with 9 additions and 7 deletions

View File

@@ -10,7 +10,7 @@
```
3. Add the VM to the desired groups and set the desired variables.
Do all the work you need to do (like creating new Ansible roles etc.).
4. Run `ansible-playbook -i inventories/hetzner playbooks/deploy.yaml`
4. Run `ansible-playbook -i inventories/hetzner playbooks/docker-compose.yaml`
## Open Source Software Used

View File

@@ -3,18 +3,19 @@
# - https://caddyserver.com/docs/
services:
caddy:
image: caddy
container_name: caddy
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- "./Caddyfile:/etc/caddy/Caddyfile:ro"
- "/ansible_docker_compose/project_data/reverse-proxy/caddy/data:/data"
- ./Caddyfile:/etc/caddy/Caddyfile:ro
- /ansible_docker_compose/project_data/reverse-proxy/caddy/data:/data
ports:
- '0.0.0.0:80:80'
- '0.0.0.0:443:443'
networks:
- caddy_net
restart: unless-stopped
networks:
caddy_net:

View File

@@ -2,6 +2,7 @@
# - https://www.metabase.com/docs/latest/operations-guide/running-metabase-on-docker.html
services:
metabase:
image: metabase/metabase:latest
container_name: metabase