added a basic docker-compose file
This commit is contained in:
parent
51a2cb91f2
commit
2acc034fc1
1 changed files with 12 additions and 0 deletions
12
docker-compose.yml
Normal file
12
docker-compose.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
version: "3"
|
||||
services:
|
||||
actual_server:
|
||||
container_name: actual_server
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "5006:5006"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
restart: unless-stopped
|
Loading…
Reference in a new issue