mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-10-31 19:38:46 -04:00
27 lines
456 B
YAML
27 lines
456 B
YAML
|
---
|
||
|
version: "3.9"
|
||
|
services:
|
||
|
redis:
|
||
|
container_name: redis
|
||
|
image: redis:6.2.5-alpine
|
||
|
tty: true
|
||
|
hostname: surfx-redis
|
||
|
websurx:
|
||
|
container_name: websurx-dev
|
||
|
image: websurfx:dev
|
||
|
working_dir: /project
|
||
|
tty: true
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: dev.Dockerfile
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
volumes:
|
||
|
- type: bind
|
||
|
source: .
|
||
|
target: /project
|
||
|
command:
|
||
|
- watch
|
||
|
- -x
|
||
|
- run
|