Change Container Image Names to FQDN in docker-compose examples

This commit is contained in:
Markus Opolka
2022-08-24 09:13:24 +02:00
parent 4077b9d0c8
commit 77ba4fe5e7
7 changed files with 12 additions and 12 deletions

View File

@@ -33,14 +33,14 @@ services:
environment:
- "HOSTNAMES=www.example.com example.com"
certbot:
image: certbot/certbot
image: docker.io/certbot/certbot
restart: unless-stopped
volumes:
- ./certbot/conf:/etc/letsencrypt
- ./certbot/www:/var/www/certbot
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
lime-db:
image: mysql:5.7
image: docker.io/mysql:5.7
environment:
- "MYSQL_USER=limesurvey"
- "MYSQL_DATABASE=limesurvey"