Some checks failed
Update Memento Dev on VPS / deploy (push) Has been cancelled
30 lines
527 B
YAML
30 lines
527 B
YAML
services:
|
|
memento-dev:
|
|
container_name: memento-dev
|
|
build:
|
|
context: .
|
|
dockerfile: pnpm.Dockerfile
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "${PORT}:${PORT}"
|
|
- "${HMR_PORT}:${HMR_PORT}"
|
|
volumes:
|
|
- ./app:/app
|
|
restart: unless-stopped
|
|
networks:
|
|
- memento-data
|
|
|
|
redis:
|
|
container_name: memento-redis
|
|
image: redis:alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- redis-data:/data
|
|
networks:
|
|
- memento-data
|
|
|
|
networks:
|
|
memento-data:
|
|
driver: bridge
|