mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-12-10 14:16:59 -06:00
16 lines
443 B
YAML
16 lines
443 B
YAML
services:
|
|
shlink_web_client_node:
|
|
container_name: shlink_web_client_node
|
|
user: 1000:1000 # With this, files created via `indocker` script will belong to the host user
|
|
build:
|
|
context: .
|
|
dockerfile: ./dev.Dockerfile
|
|
working_dir: /home/shlink/www
|
|
command: /bin/sh -c "npm install && npm run start"
|
|
volumes:
|
|
- ./:/home/shlink/www
|
|
ports:
|
|
- "3000:3000"
|
|
- "56745:56745"
|
|
- "4173:4173"
|