- remove unnecessary volumes defines in general docker-compose yml file
- remove php73 in docker compose yml example file * use only modern composer auth store path
This commit is contained in:
@ -67,6 +67,11 @@ services:
|
||||
MYSQL_ROOT_PASSWORD: 123456
|
||||
ports:
|
||||
- "3306:3306"
|
||||
volumes:
|
||||
- database:/var/lib/mysql
|
||||
- ./hostfiles:/hostfiles
|
||||
- ./log/mariadb:/var/log/mariadb
|
||||
- ./config/mariadb:/etc/mysql/conf.d
|
||||
pma:
|
||||
image: phpmyadmin/phpmyadmin
|
||||
restart: always
|
||||
@ -82,15 +87,3 @@ services:
|
||||
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]
|
||||
volumes:
|
||||
- ./config/redis/redis.conf:/usr/local/etc/redis/redis.conf
|
||||
|
||||
# Must be copied into main docker-compose yml-file
|
||||
volumes:
|
||||
database:
|
||||
|
||||
secrets:
|
||||
user_ssh_key:
|
||||
file: ~/.ssh/id_rsa
|
||||
user_known_hosts:
|
||||
file: ~/.ssh/known_hosts
|
||||
composer_auth:
|
||||
file: ~/.config/composer/auth.json
|
||||
|
Reference in New Issue
Block a user