This repository has been archived on 2023-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
black-cat/dev/docker/docker-compose.yaml
2022-12-09 17:12:17 -06:00

13 lines
257 B
YAML

version: '3'
services:
app:
image: 'node:19-slim'
container_name: 'black-cat'
ports:
- '18080:18080/tcp'
user: '1000:1000'
working_dir: '/app'
volumes:
- './app:/app'
command: 'node .'
restart: 'unless-stopped'