socialtree/dev/docker/stacks/dev/compose.yml
2023-01-12 21:57:24 +01:00

13 lines
290 B
YAML

version: '3'
services:
app:
image: node:lts-alpine
container_name: socialtree
environment:
PORT: 3000
ports:
- 3000:3000
volumes:
- ../../../../:/app
- ./docker-entrypoint.sh:/docker-entrypoint.sh
entrypoint: ["sh", "/docker-entrypoint.sh"]