Browse Source
Merge pull request #171 from harryleesan/docker_compose_fix
Fixed working directory in docker-compose.yml to match Dockerfile
pull/174/head
Cian Butler
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
docker-compose.yml
|
@ -6,7 +6,7 @@ services: |
|
|
image: butlerx/wetty |
|
|
image: butlerx/wetty |
|
|
container_name: wetty |
|
|
container_name: wetty |
|
|
tty: true |
|
|
tty: true |
|
|
working_dir: /app |
|
|
working_dir: /usr/src/app |
|
|
ports: |
|
|
ports: |
|
|
- "3000:3000" |
|
|
- "3000:3000" |
|
|
environment: |
|
|
environment: |
|
|