https://github.com/daggerok/docker-compose-linux-fish-shell
install docker-compose on linux with fish shell
https://github.com/daggerok/docker-compose-linux-fish-shell
Last synced: 4 months ago
JSON representation
install docker-compose on linux with fish shell
- Host: GitHub
- URL: https://github.com/daggerok/docker-compose-linux-fish-shell
- Owner: daggerok
- Created: 2016-09-02T08:49:46.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-12-13T09:38:09.000Z (over 9 years ago)
- Last Synced: 2025-02-27T02:24:04.514Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-compose-linux-fish-shell
install docker-compose on linux with fish shell
fish:
```fish
set DOCKER_COMPOSE_VERSION 1.9.0
curl -L https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-(uname -s)-(uname -m) > docker-compose
chmod +x docker-compose
sudo mv -f docker-compose /usr/local/bin/
```
bash:
```bash
export DOCKER_COMPOSE_VERSION=1.9.0
curl -L https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m) > docker-compose
chmod +x docker-compose
sudo mv -f docker-compose /usr/local/bin/
```