mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00

* Basic docker compose infrastructure * Fix port mapping problem * Move files into test folder Co-authored-by: Lars Hvam <larshp@hotmail.com>
21 lines
438 B
YAML
21 lines
438 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
abapgit:
|
|
image: abapgit
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
environment:
|
|
NODE_ENV: development
|
|
networks:
|
|
default:
|
|
volumes:
|
|
- ..:/home/node/abapGit
|
|
# links:
|
|
# - httpEndpoint:httpbin.com
|
|
# depends_on:
|
|
# - httpEndpoint
|
|
# httpEndpoint:
|
|
# image: hashicorp/http-echo
|
|
# command: -text="Hello World" -listen=:80 |