This obviates the need to start/stop a web-server for each package test and paves the way to something we'll need later.
19 lines
320 B
YAML
19 lines
320 B
YAML
version: '2'
|
|
|
|
services:
|
|
test-web:
|
|
image: nginx:stable-alpine
|
|
ports:
|
|
- 8090:80
|
|
volumes:
|
|
- ./:/usr/share/nginx/html:ro
|
|
cloud9:
|
|
image: sapk/cloud9:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./:/workspace/
|
|
ports:
|
|
- 8080:8080
|
|
- 8181:8181
|
|
command: --auth c9:c9
|