Web terminal

This example shows you how to access containers running in a Codefresh standup environment.

Looking around

In the root of this repository you’ll find a file named docker-compose.yml. Here are the contents of this file:

Composition.yml

version: '3'
services:
  my-service:
    image: 'containers101/whomi:master'
    volumes:
      - my-service:/app
    ports:
      - '1337'
  terminal:
    image: 'containers101/cfterminal:master'
    ports:
      - '8000'
    volumes_from:
      - my-service
volumes:
  my-service:
    driver: local

TIP
Just head over to the example repository in GitHub and follow the instructions there.

CD pipeline examples
Codefresh YAML for pipeline definitions
Creating pipelines
How Codefresh pipelines work