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

@@ -1,7 +1,7 @@
version: '3'
services:
limesurvey:
image: martialblog/limesurvey:latest
image: docker.io/martialblog/limesurvey:latest
restart: always
environment:
- DB_TYPE=pgsql
@@ -22,7 +22,7 @@ services:
depends_on:
- db
db:
image: postgres:10-alpine
image: docker.io/postgres:10-alpine
restart: always
volumes:
- db-data:/var/lib/postgresql