goshorly/docker-compose.yml

21 lines
380 B
YAML
Raw Normal View History

2021-12-07 14:49:58 +00:00
version: "3"
services:
web:
2021-12-07 17:18:00 +00:00
# build: . # Only if you want to Build the image on your own Server!
image: registry.ucode.space/phil/goshorly:latest
2021-12-07 14:49:58 +00:00
ports:
- "3000:3000"
depends_on:
- redis
restart: always
redis:
image: redis:alpine
command: redis-server --appendonly yes
volumes:
- db:/data
restart: always
volumes:
2021-12-07 17:18:00 +00:00
db: