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

@@ -17,7 +17,7 @@ services:
- "DB_PASSWORD=secret"
- "ADMIN_PASSWORD=foobar"
lime-web:
image: nginx:alpine
image: docker.io/nginx:alpine
links:
- limesurvey
depends_on:
@@ -28,7 +28,7 @@ services:
- ./examples/nginx.conf:/etc/nginx/nginx.conf:ro
- lime:/var/www/html
lime-db:
image: mysql:5.7
image: docker.io/mysql:5.7
environment:
- "MYSQL_USER=limesurvey"
- "MYSQL_DATABASE=limesurvey"