16 lines
411 B
YAML
16 lines
411 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
one_repo_to_rule_them_all:
|
|
# user: "${UID}:${GID}"
|
|
build:
|
|
context: ../..
|
|
dockerfile: .devcontainer/stripe-to-invoice/Dockerfile
|
|
command: code-server --bind-addr 0.0.0.0:8080 --auth password
|
|
# command: sleep infinity
|
|
volumes:
|
|
- ../..:/workspaces/monorepo
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "8080:8080"
|