Jose Diaz-Gonzalez
4f7e01973a
fix: ensure the tracked container id is up to date
...
If the ID file contained an incorrect value, calling :start would say the service is started but :info would still show the container as missing.
Also fix an issue where docker inspect leaked stderr when the container was missing.
Refs dokku/dokku-redis#133
2019-06-11 15:44:54 -04:00
Jose Diaz-Gonzalez
ce916eb846
feat: re-allow dashes in names
...
This PR allows dashes in service names, while still sanitizing them before they are used as database names. If the datastore is pre-existing, the datatabase name is assumed to be the same as the service name, and returned appropriately.
2019-05-30 17:03:48 -04:00
Jose Diaz-Gonzalez
143e249892
chore: reorder functions
2019-05-30 11:13:22 -04:00
Jose Diaz-Gonzalez
416a26c107
chore: move retry-docker-command to common-functions
2019-05-30 11:11:02 -04:00
Jose Diaz-Gonzalez
6fe30de9f2
chore: run shfmt
2019-05-30 11:06:25 -04:00
Jose Diaz-Gonzalez
8e5adaed47
fix: update docker-s3backup image to fix backups to s3
2019-03-28 05:23:39 -04:00
Jose Diaz-Gonzalez
7788b2edd9
fix: correct issue where aliases were being generated incorrectly
2019-03-27 12:18:18 -04:00
Jose Diaz-Gonzalez
631cc44503
feat: update to latest dokku/s3backup image
2019-03-25 13:47:03 -04:00
Jose Diaz-Gonzalez
7b90e6283b
feat: switch to updated ambassador image
2019-03-25 12:46:01 -04:00
Jose Diaz-Gonzalez
0948e2813a
chore: unify with other plugins
2019-03-19 14:59:49 -04:00
Jose Diaz-Gonzalez
c41bcc9c1b
feat: Real docker-based testing
...
This pull request switches testing to use an actual docker daemon, vs mocking everything out.
It may also catch actual breaking issues in our tests, which is great!
2019-03-18 14:44:28 -04:00
Jose Diaz-Gonzalez
efe30f1a5f
fix: correct check to see if container exists
2019-03-16 20:40:07 -04:00
Jose Diaz-Gonzalez
fc3f6a8a52
fix: correct the validation message
2019-03-09 16:39:34 -05:00
Jose Diaz-Gonzalez
1551ec61e7
fix: Strictly validate service names
...
We previously allowed a wide range of service names. As the service name is sometimes used to name databases, the name was actually more restricted than any character, resulting in services that wouldn't start. Going forward, only alphanumeric and underscore characters are allowed.
This only impacts service creation. Any services with invalid names should be migrated to a new service, with the data exported and imported as normal.
Closes dokku/dokku-redis#99
Closes dokku/dokku-mysql#47
Closes dokku/dokku-mongo#86
Closes dokku/dokku-redis#81
2019-03-09 15:54:21 -05:00
Jose Diaz-Gonzalez
5ca27fbeff
fix: correct ID check
...
It may be true in tests because we mock docker itself...
2019-03-09 15:24:20 -05:00
Jose Diaz-Gonzalez
3c40976298
fix: correct check to see if service is running
...
This sometimes bizarrely returned a value of 'true' when it wasn't....
2019-03-09 15:09:14 -05:00
Jose Diaz-Gonzalez
8061f0c50a
fix: correct issues where docker ps is truncated
...
This should actually be refactored to avoid the grep call completely, but the current fix will correct the issue for now.
Refs dokku/dokku-postgres#131
2018-12-02 05:21:10 -05:00
Jose Diaz-Gonzalez
5e5ad6d472
fix: clean up backup containers after use
...
Closes dokku/dokku#104
2018-12-02 04:46:52 -05:00
Jose Diaz-Gonzalez
b7724b826c
fix: correct issues in upgrade and fix tests
2018-10-11 14:16:47 -04:00
Jose Diaz-Gonzalez
00b290346e
feat: allow removal of header from :list subcommand
2018-10-10 23:54:08 -04:00
Jose Diaz-Gonzalez
5f2e184d68
feat: add support for restarting containers to ensure links continue to work properly when the application has resolved dns of the link
2018-10-10 23:14:45 -04:00
Jose Diaz-Gonzalez
8a8857374c
fix: handle case where container being removed does not exist
2018-10-10 22:03:44 -04:00
Jose Diaz-Gonzalez
a39ade3161
chore: correct verbiage around upgrades
2018-10-10 02:54:34 -04:00
Jose Diaz-Gonzalez
e089d0d03d
fix: correct check for existing image
2018-10-10 02:42:43 -04:00
Jose Diaz-Gonzalez
284ffa3177
feat: add ability to upgrade service image and image-version
2018-10-10 00:13:59 -04:00
Jose Diaz-Gonzalez
e07b387d86
feat: add command to list linked services for a given app
2018-07-21 16:31:55 -04:00
Jose Diaz-Gonzalez
a5d5b4a22d
fix: properly set SERVICE_ALIAS
2018-04-24 15:05:50 -04:00
Jose Diaz-Gonzalez
57956e0dad
feat: properly handle custom aliases and error states for alias usage when calling link subcommand. Refs dokku/dokku-redis#64
2018-04-24 03:21:55 -04:00
Jose Diaz-Gonzalez
c83e0a56d2
refactor: make variable as dns hostname more clear
2018-04-24 02:54:46 -04:00
Jose Diaz-Gonzalez
0bcd62459d
fix: remove an infinite loop. Refs dokku/dokku-redis#64
2018-04-24 02:18:26 -04:00
Jose Diaz-Gonzalez
4b8b0c4bd5
feat: implement link querystring flags. Refs dokku/dokku-redis#64
2018-04-24 01:40:21 -04:00
Jose Diaz-Gonzalez
02b0c1c7f9
refactor: move unimplemented command detection into config file
2018-04-24 00:27:17 -04:00
Jose Diaz-Gonzalez
9d09589942
fix: set SERVICE_ROOT variable for backups
2018-04-23 18:11:26 -04:00
Jose Diaz-Gonzalez
6fe4c6527e
fix: set ID variable for backups
2018-04-23 18:08:31 -04:00
Jose Diaz-Gonzalez
2de0a04ba8
chore: standardize on single method of setting backup root. Refs dokku/dokku-redis#91
2018-04-23 17:36:48 -04:00
Jose Diaz-Gonzalez
46d1ac785c
fix: properly handle use-iam flag. Closes dokku/dokku-redis#88
2018-04-23 17:11:37 -04:00
Jose Diaz-Gonzalez
cfb9e508da
fix: silence errors when a container does not exist. Closes dokku/dokku-redis#85
2018-04-23 15:52:07 -04:00
Jose Diaz-Gonzalez
77c64b4045
feat: create backup-schedule-cat subcommand
2018-04-23 14:39:26 -04:00
Jose Diaz-Gonzalez
c6f38b2c1b
fix: Properly handle updated config functions
...
Closes dokku/dokku-redis#90
2018-01-12 06:11:53 -05:00
Jose Diaz-Gonzalez
65e2999f31
feat: allow checking if a service is linked to an app
2018-01-12 01:53:53 -05:00
Jose Diaz-Gonzalez
6775daa8d4
fix: allow unlinking a service regardless of config status
...
Closes dokku/dokku-redis#92
2018-01-11 22:55:42 -05:00
Jose Diaz-Gonzalez
83df40711c
fix: ensure we create the config directory
2017-09-11 07:13:46 -04:00
Jose Diaz-Gonzalez
6684ff4f31
feat: add support for -u flag as alias for --use-iam
2017-09-10 19:14:33 -04:00
Jose Diaz-Gonzalez
f362031318
feat: add support for --tail
2017-09-10 01:20:45 -04:00
Jose Diaz-Gonzalez
21203f60e9
feat: Adds possibility to set encryption for s3
2017-09-09 14:29:58 -04:00
Jose Diaz-Gonzalez
62f4f96da4
fix: correct shellcheck error
2017-08-28 11:45:48 -04:00
Jose Diaz-Gonzalez
ee669c68e2
fix: skip removing the ambassador container when it isn't running. Closes dokku/dokku-mongo#90
2017-08-27 18:55:23 -04:00
Jose Diaz-Gonzalez
afcfc0253c
feat: add ability to specify custom flags on clone/create
...
Refs dokku/dokku-redis#64
2017-08-26 18:10:31 -04:00
Jose Diaz-Gonzalez
478de27464
feat: Add a --use-iam flag to backup subcommand
2017-08-26 04:23:13 -04:00
Jose Diaz-Gonzalez
9e27f4928a
Adds parameters to backup-auth for region support and non AWS endpoint support
...
Refs dokku/dokku-mariadb#61
2017-08-26 00:06:36 -04:00