Skip to content

Instantly share code, notes, and snippets.

@apa512
Last active April 20, 2016 11:13
Show Gist options
  • Save apa512/64e0240adaa17cb9bd242f3f2c78513e to your computer and use it in GitHub Desktop.
Save apa512/64e0240adaa17cb9bd242f3f2c78513e to your computer and use it in GitHub Desktop.

docker-compose.yml:

  dockerfile: Dockerfile-test
  build: .
  command: sleep infinity
  volumes:
    - .:/stuff

Dockerfile-test:

FROM ubuntu:latest

WORKDIR /stuff

RUN mkdir test
docker-compose.yml:
```test:
dockerfile: Dockerfile-test
build: .
command: sleep infinity
volumes:
- .:/stuff```
Dockerfile-test:
```FROM ubuntu:latest
WORKDIR /stuff
RUN mkdir test```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment