Skip to content

Commit

Permalink
migrate to Docker Compose V2 using
Browse files Browse the repository at this point in the history
Usage:  docker compose [OPTIONS] COMMAND

Docker Compose

Options:
      --ansi string                Control when to print ANSI control
                                   characters ("never"|"always"|"auto")
                                   (default "auto")
      --compatibility              Run compose in backward compatibility mode
      --env-file string            Specify an alternate environment file.
  -f, --file stringArray           Compose configuration files
      --profile stringArray        Specify a profile to enable
      --project-directory string   Specify an alternate working directory
                                   (default: the path of the, first specified,
                                   Compose file)
  -p, --project-name string        Project name

Commands:
  build       Build or rebuild services
  convert     Converts the compose file to platform's canonical format
  cp          Copy files/folders between a service container and the local filesystem
  create      Creates containers for a service.
  down        Stop and remove containers, networks
  events      Receive real time events from containers.
  exec        Execute a command in a running container.
  images      List images used by the created containers
  kill        Force stop service containers.
  logs        View output from containers
  ls          List running compose projects
  pause       Pause services
  port        Print the public port for a port binding.
  ps          List containers
  pull        Pull service images
  push        Push service images
  restart     Restart service containers
  rm          Removes stopped service containers
  run         Run a one-off command on a service.
  start       Start services
  stop        Stop services
  top         Display the running processes
  unpause     Unpause services
  up          Create and start containers
  version     Show the Docker Compose version information

Run 'docker compose COMMAND --help' for more information on a command.
  • Loading branch information
Kiya Govek committed Nov 15, 2023
1 parent 1f3e8c3 commit a31ce52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .omero/compose
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ PROJECT=${PROJECT:-$(get_project_name)}
# making use of COMPOSE_PROJECT_NAME

cd $dir
exec docker-compose -p ${PROJECT} "$@"
exec docker compose -p ${PROJECT} "$@"

0 comments on commit a31ce52

Please sign in to comment.