c119c44c13
When this is merged https://gitlab.com/ligolang/ligo-web-ide/ will be marked as deprecated. This MR does not hook up the webide build to the main CI. The CI integration will come in a subsequent MR for the sake of making review easier.
19 lines
371 B
YAML
19 lines
371 B
YAML
version: '3'
|
|
services:
|
|
webide:
|
|
image: "${WEBIDE_IMAGE}"
|
|
environment:
|
|
- DATA_DIR=/tmp
|
|
volumes:
|
|
- /tmp:/tmp
|
|
logging:
|
|
driver: none
|
|
e2e:
|
|
build: .
|
|
environment:
|
|
- API_HOST=http://webide:8080
|
|
volumes:
|
|
- /tmp:/tmp
|
|
depends_on:
|
|
- webide
|