Files
snippet-box/docker-compose.yml
2021-11-08 17:46:16 +01:00

13 lines
257 B
YAML

version: '3'
services:
snippet-box:
image: pawelmalak/snippet-box
container_name: snippet-box
volumes:
- /path/to/host/data:/app/data
ports:
- 5000:5000
environment:
- NODE_ENV: production
restart: unless-stopped