mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
Change Container Image Names to FQDN in docker-compose examples
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user