All Projects → welaika → docker-wordmove

welaika / docker-wordmove

Licence: other
Docker image to run Wordmove

Projects that are alternatives of or similar to docker-wordmove

Github Pages Deploy Action
Automatically deploy your project to GitHub Pages using GitHub Actions. This action can be configured to push your production-ready code into any branch you'd like.
Stars: ✭ 2,507 (+15568.75%)
Mutual labels:  deployment, deploy
QLD
A graphical tool to make the deploying of Qt quick applications on linux platform faster
Stars: ✭ 18 (+12.5%)
Mutual labels:  deployment, deploy
Meli
Platform for deploying static sites and frontend applications easily. Automatic SSL, deploy previews, reverse proxy, and more.
Stars: ✭ 2,125 (+13181.25%)
Mutual labels:  deployment, deploy
Rsync Deployments
GitHub Action for deploying code via rsync over ssh
Stars: ✭ 59 (+268.75%)
Mutual labels:  deployment, deploy
Git Ftp
Uses Git to upload only changed files to FTP servers.
Stars: ✭ 5,104 (+31800%)
Mutual labels:  sync, deploy
The forge
Our groundbreaking, lightning fast PWA CLI tool
Stars: ✭ 70 (+337.5%)
Mutual labels:  deployment, deploy
Rocket
Automated software delivery as fast and easy as possible 🚀
Stars: ✭ 217 (+1256.25%)
Mutual labels:  deployment, deploy
Git Deploy
Php Script for Auto-Pull in server (Using WebHook from GitLab, GitHub and Bitbucket)
Stars: ✭ 495 (+2993.75%)
Mutual labels:  deployment, deploy
Gitee Pages Action
🤖 Auto Deploy Gitee Pages | 无须人为干预,自动部署 Gitee Pages
Stars: ✭ 265 (+1556.25%)
Mutual labels:  sync, deployment
Git Auto Deploy
Deploy your GitHub, GitLab or Bitbucket projects automatically on Git push events or web hooks
Stars: ✭ 251 (+1468.75%)
Mutual labels:  deployment, deploy
Deployer
Deployer is a free and open source deployment tool.
Stars: ✭ 854 (+5237.5%)
Mutual labels:  deployment, deploy
yoda
Simple tool to dockerize and manage deployment of your project
Stars: ✭ 69 (+331.25%)
Mutual labels:  deployment, deploy
Flubucore
A cross platform build and deployment automation system for building projects and executing deployment scripts using C# code.
Stars: ✭ 695 (+4243.75%)
Mutual labels:  deployment, deploy
Deployer
A deployment tool written in PHP with support for popular frameworks out of the box
Stars: ✭ 8,928 (+55700%)
Mutual labels:  deployment, deploy
Shipit
Universal automation and deployment tool ⛵️
Stars: ✭ 5,249 (+32706.25%)
Mutual labels:  deployment, deploy
Deploy
Ansible role to deploy scripting applications like PHP, Python, Ruby, etc. in a capistrano style
Stars: ✭ 2,141 (+13281.25%)
Mutual labels:  deployment, deploy
Cipi
An Open Source Control Panel for your Cloud! Deploy and manage LEMP apps in one click!
Stars: ✭ 376 (+2250%)
Mutual labels:  deployment, deploy
Easy Deploy Bundle
The easiest way to deploy your Symfony applications
Stars: ✭ 446 (+2687.5%)
Mutual labels:  deployment, deploy
Cqtdeployer
This project is used to deploy applications written using QML, qt or other С / С++ frameworks.
Stars: ✭ 225 (+1306.25%)
Mutual labels:  deployment, deploy
dropship
Super simple deployment tool
Stars: ✭ 62 (+287.5%)
Mutual labels:  deployment, deploy

Docker image to run Wordmove.

Docker Build Status Docker Build Status Slack channel

What's inside

  • openssh-server
  • curl
  • rsync
  • mysql-client
  • php
  • wordmove
  • wp-cli
  • lftp
  • ruby

Additionally we install build-essential and ruby-dev in order to be able to compile gems inside the image, thus enabling it to be used as CI image in certain scenarios.

TAG specific

We ship 3 flavours of this container:

  • latest / php7
  • php73 (PHP version stuck at 7.3)
  • alpine
  • php5 (deprecated and unmaintained)

@since 28 November 2019 latest corresponds to php7

latest/php7 is based upon Debian Buster alpine tag is based upon Alpine Linux 3.10 php5 is based upon Ubuntu 14.04

latest/php7 also ships with preconfigured en_US.UTF-8 locale.

php5 also ships with:

  • sshpass
  • ENV RUBYOPT="-KU -E utf-8:utf-8" (Fix for some mysql sync issues when using old db adapter)

How to use

To run this image

docker run -it --rm -v ~/.ssh:/root/.ssh:ro welaika/wordmove

This starts a shell, with wordmove available on the command-line.

SSH permission caveat

If you are on a Winodws or Linux host, then you could get permission errors while trying to use your ssh keys. To work around this problem we've a trick for you:

docker run -it --rm -v ~/.ssh:/tmp/.ssh:ro welaika/wordmove

Mounting .ssh/ inside /tmp/ will tell the image to automatically copy it over in /root/ and to fix permissions.

ENV

A WORDMOVE_WORKDIR environment variable is exported inside the container; since this is the container's WORKDIR path, you could use <%= ENV['WORDMOVE_WORKDIR'] %> inside a movefile.yml in order to solidly know the pwd.

For example running

docker run --rm -v ~/.ssh:/root/.ssh:ro -v ~/dev/wp-site/:/html welaika/wordmove wordmove pull -d

you could configure movefile.yml like

local:
  wordpress_path: "<%= ENV['WORDMOVE_WORKDIR'] %>"
  # [...]

To run this image in a full Docker-based WordPress environment

See Wordpress development made easy using Docker

This tutorial explains how to set up a WordPress environment, using Docker Compose, with the following four interconnected containers:

  • database
  • wordpress
  • phpmyadmin
  • wordmove

Don't forget to replace image: mfuezesi/wordmove with image: welaika/wordmove to get the latest version of Wordmove.

Notable changes

Since the first version of this container, which is now tagged as php5, we got some potentially breaking changes.

  • There is no wordmove user anymore. Now Wordmove supports to be invoked from root user, so we've removed some complexity from the container build. See https://github.com/welaika/wordmove/releases/tag/v2.5.1
  • sshpass has been removed. It's use is discouraged and deprecated by Wordmove, so it is in this container. We warmly recommend to use safer approaches.
  • RUBYOPT is no more exported. It was solving a problem disappeared since using wp-cli by default, so we've removed complexity from the build.

Credits 🙏🏻

Based on mfuezesi/docker-wordmove, with WP-CLI support added.

Maintainers

@simonbland and @welaika dev team 😎

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].