An open API service indexing awesome lists of open source software.

https://github.com/deploy2docker/deploy2docker

Deploy to Remote Docker using SSH
https://github.com/deploy2docker/deploy2docker

ci devops docker remote-containers ssh

Last synced: 5 days ago
JSON representation

Deploy to Remote Docker using SSH

Awesome Lists containing this project

README

          

# deploy2docker

Deploy to Remote Docker using SSH

### Config
```yml
services:
- name: nginx
image: nginx
ports:
- 80
volumes:
- /var/log/nginx:/var/log/nginx
- /var/www/html:/var/www/html
environment:
- NGINX_PORT=80
networks:
- frontend

```

### Deploy

```sh
deploy2docker --remote user@remote --password password
```