mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
21 lines
418 B
YAML
21 lines
418 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 |