feat: add Dockerfile
This commit is contained in:
parent
a462b6af1b
commit
1b7e975080
8 changed files with 60 additions and 13 deletions
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
services:
|
||||
armory:
|
||||
restart: unless-stopped
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
volumes:
|
||||
- ./data:/data/
|
||||
- ./logs:/logs/
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- local-private-net
|
||||
ports:
|
||||
- 48733:48733
|
||||
|
||||
networks:
|
||||
local-private-net:
|
||||
driver: bridge
|
||||
Loading…
Add table
Add a link
Reference in a new issue