refinement/docker-compose.yml

12 lines
242 B
YAML
Raw Normal View History

2024-09-16 19:57:02 -03:00
services:
web-server:
2025-02-11 00:48:43 -03:00
image: git.jabuxas.com/jabuxas/refinement:latest
2025-02-16 09:22:26 -03:00
# build: .
2024-09-16 19:57:02 -03:00
ports:
- "8880:8000"
environment:
ROCKET_ADDRESS: 0.0.0.0
2025-02-16 09:22:26 -03:00
volumes:
- "./projects:/projects"
2024-09-18 11:49:59 -03:00
restart: unless-stopped