NOTE: Apart from
(and even then it's questionable, I'm Scottish). These are machine translated in languages I don't read. If they're terrible please contact me.
You can see how this translation was done in this article.
Tuesday, 30 July 2024
//Less than a minute
Docker Compose è uno strumento per definire ed eseguire applicazioni Docker multi-container. Con Compose, si utilizza un file YAML per configurare i servizi della propria applicazione. Poi, con un unico comando, si creano e si avviano tutti i servizi dalla configurazione.
Al momento uso Docker Compose per eseguire alcuni servizi sul mio server.
Qui c'è il docker-compose.yml
file che uso per eseguire questi servizi:
services:
mostlylucid:
image: scottgal/mostlylucid:latest
labels:
- "com.centurylinklabs.watchtower.enable=true"
cloudflared:
image: cloudflare/cloudflared:latest
command: tunnel --no-autoupdate run --token ${CLOUDFLARED_TOKEN}
env_file:
- .env
watchtower:
image: containrrr/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_LABEL_ENABLE=true
command: --interval 300 # Check for updates every 300 seconds (5 minutes)