import files

This commit is contained in:
Yann Autissier
2021-02-09 17:05:00 +01:00
parent f5c4576411
commit 44a6d37ba5
425 changed files with 23195 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
MYSQL_ROOT_PASSWORD=root
+10
View File
@@ -0,0 +1,10 @@
version: '3.6'
services:
mysql:
build:
args:
- DOCKER_BUILD_DIR=docker/mysql/5.6
context: ../..
dockerfile: docker/mysql/5.6/Dockerfile
image: ${DOCKER_REPOSITORY}/mysql:${DOCKER_IMAGE_TAG}
+6
View File
@@ -0,0 +1,6 @@
version: '3.6'
services:
mysql:
ports:
- 3303:3306
+5
View File
@@ -0,0 +1,5 @@
version: '3.6'
services:
mysql:
image: mysql:latest
+6
View File
@@ -0,0 +1,6 @@
version: '3.6'
services:
mysql:
ports:
- 3306:3306
+24
View File
@@ -0,0 +1,24 @@
version: '3.6'
services:
mysql:
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
labels:
- SERVICE_CHECK_SCRIPT=container-check-status $$SERVICE_IP
- SERVICE_3306_NAME=${COMPOSE_SERVICE_NAME}-mysql-3306
networks:
- private
ports:
- 3306
volumes:
- mysql:/var/lib/mysql
restart: always
volumes:
mysql:
networks:
private:
external: true
name: ${DOCKER_NETWORK_PRIVATE}