Skip to content

Instantly share code, notes, and snippets.

@gus3000
Last active September 3, 2019 13:00
Show Gist options
  • Select an option

  • Save gus3000/53b0b4c613d83bf5ccd1127054bf1462 to your computer and use it in GitHub Desktop.

Select an option

Save gus3000/53b0b4c613d83bf5ccd1127054bf1462 to your computer and use it in GitHub Desktop.
Fichier de configuration Docker Mysql et Oracle
version: '3.1'
services:
mysql:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: mypasswd # à changer
MYSQL_DATABASE: magic # à changer
ports:
- 3306:3306
oracle:
image: oracleinanutshell/oracle-xe-11g:latest
ports:
- 1521:1521
- 5500:5500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment