Merge pull request #125 from martialblog/fix/images-fqdn

Change Container Image Names to FQDN
This commit is contained in:
Markus Opolka
2022-08-24 09:26:45 +02:00
committed by GitHub
13 changed files with 18 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
FROM php:8.0-apache FROM docker.io/php:8.0-apache
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies

View File

@@ -1,4 +1,4 @@
FROM php:8.0-fpm-alpine FROM docker.io/php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies

View File

@@ -1,4 +1,4 @@
FROM php:8.0-fpm FROM docker.io/php:8.0-fpm
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies

View File

@@ -1,4 +1,4 @@
FROM php:8.0-apache FROM docker.io/php:8.0-apache
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies

View File

@@ -1,4 +1,4 @@
FROM php:8.0-fpm-alpine FROM docker.io/php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies

View File

@@ -1,4 +1,4 @@
FROM php:8.0-fpm FROM docker.io/php:8.0-fpm
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
# Install OS dependencies # Install OS dependencies

View File

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

View File

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

View File

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

View File

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

View File

@@ -22,7 +22,7 @@ services:
- "DB_PASSWORD=secret" - "DB_PASSWORD=secret"
- "ADMIN_PASSWORD=foobar" - "ADMIN_PASSWORD=foobar"
lime-db: lime-db:
image: postgres:10 image: docker.io/postgres:10
volumes: volumes:
- db-data:/var/lib/postgresql/data - db-data:/var/lib/postgresql/data
environment: environment:

View File

@@ -24,7 +24,7 @@ services:
- "PUBLIC_URL=http://localhost:8888/limesurvey" - "PUBLIC_URL=http://localhost:8888/limesurvey"
- "BASE_URL=http://localhost:8888/limesurvey" - "BASE_URL=http://localhost:8888/limesurvey"
traefik: traefik:
image: "traefik:v2.5" image: docker.io/traefik:v2.5
container_name: "traefik" container_name: "traefik"
command: command:
- "--api.insecure=true" - "--api.insecure=true"
@@ -37,7 +37,7 @@ services:
volumes: volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro" - "/var/run/docker.sock:/var/run/docker.sock:ro"
lime-db: lime-db:
image: mysql:5.7 image: docker.io/mysql:5.7
environment: environment:
- "MYSQL_USER=limesurvey" - "MYSQL_USER=limesurvey"
- "MYSQL_DATABASE=limesurvey" - "MYSQL_DATABASE=limesurvey"

View File

@@ -20,7 +20,7 @@ services:
# If you require an empty table prefix, use a space as the DB_TABLE_PREFIX # If you require an empty table prefix, use a space as the DB_TABLE_PREFIX
# - "DB_TABLE_PREFIX= " # - "DB_TABLE_PREFIX= "
lime-db: lime-db:
image: mysql:5.7 image: docker.io/mysql:5.7
environment: environment:
- "MYSQL_USER=limesurvey" - "MYSQL_USER=limesurvey"
- "MYSQL_DATABASE=limesurvey" - "MYSQL_DATABASE=limesurvey"