Skip to content

Instantly share code, notes, and snippets.

@esron
Created October 15, 2018 23:04
Show Gist options
  • Select an option

  • Save esron/d4e13c83b06c124bc95e46b7ea3773f9 to your computer and use it in GitHub Desktop.

Select an option

Save esron/d4e13c83b06c124bc95e46b7ea3773f9 to your computer and use it in GitHub Desktop.
version: '2'
services:
web:
container_name: web
image: esron/ubuntu-web-server
volumes:
- .:/home/project-folder
ports:
- '8000:80'
mysql:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: example
adminer:
image: adminer
restart: always
ports:
- 8080:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment