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

This commit is contained in:
2025-08-20 10:45:49 +02:00
parent 272af441a6
commit e1d1f17894
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. 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.). 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 ## Open Source Software Used

View File

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

View File

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