Created
May 3, 2017 19:24
-
-
Save eldondevcg/08033df5adbb1ee10a848437d78bf4dd to your computer and use it in GitHub Desktop.
Add ssh access to a wordpress docker-compose setup.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: somewordpress | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
wordpress: | |
depends_on: | |
- db | |
image: wordpress:latest | |
ports: | |
- "8000:80" | |
restart: always | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_USER: wordpress | |
WORDPRESS_DB_PASSWORD: wordpress | |
ssh: | |
image: tutum/ubuntu | |
volumes_from: | |
- wordpress | |
depends_on: | |
- wordpress | |
- db | |
ports: | |
- "2222:22" | |
restart: always | |
environment: | |
AUTHORIZED_KEYS: "CHANGEME" | |
volumes: | |
db_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment