mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
19 lines
565 B
Bash
19 lines
565 B
Bash
#!/bin/bash
|
|
#
|
|
# Scripts in this directory are run during the build process.
|
|
# each script will be uploaded to /tmp on your build droplet,
|
|
# given execute permissions and run. The cleanup process will
|
|
# remove the scripts from your build system after they have run
|
|
# if you use the build_image task.
|
|
#
|
|
|
|
#
|
|
# Install Docker Compose
|
|
# ref: https://docs.docker.com/compose/install/
|
|
#
|
|
|
|
curl -L https://github.com/docker/compose/releases/download/1.23.2/docker-compose-`uname -s`-`uname -m` \
|
|
-o /usr/local/bin/docker-compose
|
|
|
|
chmod +x /usr/local/bin/docker-compose
|