21 lines
361 B
YAML
21 lines
361 B
YAML
version: '2'
|
|
|
|
services:
|
|
test-web:
|
|
image: nginx:stable-alpine
|
|
ports:
|
|
- 8090:80
|
|
volumes:
|
|
- ./:/usr/share/nginx/html:ro
|
|
cloud9:
|
|
build:
|
|
context: ./docker
|
|
dockerfile: cloud9.dockerfile
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./:/workspace/
|
|
ports:
|
|
- 8080:8080
|
|
- 8181:8181
|
|
command: --auth c9:c9
|