You've already forked hotpocket
This commit is contained in:
28
services/packages/docker-compose.yaml
Normal file
28
services/packages/docker-compose.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
services:
|
||||
packages-management:
|
||||
build:
|
||||
context: ".."
|
||||
dockerfile: "packages/Dockerfile"
|
||||
target: "development"
|
||||
image: "docker-hosted.nexus.bthlabs.pl/hotpocket/packages:local"
|
||||
command: "echo 'NOOP'"
|
||||
environment: &packages-env
|
||||
PYTHONBREAKPOINT: "ipdb.set_trace"
|
||||
HOTPOCKET_PACKAGES_ENV: "${HOTPOCKET_PACKAGES_ENV:-docker}"
|
||||
REQUESTS_CA_BUNDLE: "/srv/tls/requests_ca_bundle.pem"
|
||||
RUN_POETRY_INSTALL: "true"
|
||||
RUN_YARN_INSTALL: "false"
|
||||
SETUP_BACKEND: "true"
|
||||
SETUP_FRONTEND: "false"
|
||||
volumes:
|
||||
- "packages_venv:/srv/venv"
|
||||
- "packages_node_modules:/srv/node_modules"
|
||||
- ".:/srv/app"
|
||||
- "../tls:/srv/tls"
|
||||
restart: "no"
|
||||
stdin_open: true
|
||||
tty: true
|
||||
|
||||
volumes:
|
||||
packages_venv:
|
||||
packages_node_modules:
|
||||
Reference in New Issue
Block a user