first commit
This commit is contained in:
commit
b17ddb6a3c
2
.env
Normal file
2
.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
REDIS_PORT_6379_TCP_ADDR=calcnetignet_redis
|
||||||
|
REDIS_PORT_6379_TCP_PORT=6379
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
volumes/
|
18
compose.yml
Normal file
18
compose.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: redis:latest
|
||||||
|
container_name: calcnetignet_redis
|
||||||
|
volumes:
|
||||||
|
- ./volumes/redis:/data
|
||||||
|
command: redis-server --appendonly yes
|
||||||
|
restart: unless-stopped
|
||||||
|
ethercalc:
|
||||||
|
image: audreyt/ethercalc-4.8:latest
|
||||||
|
container_name: calcnetignet_ethercalc
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:9004:8000"
|
||||||
|
restart: unless-stopped
|
Loading…
x
Reference in New Issue
Block a user