first commit

This commit is contained in:
julien 2025-01-14 17:38:05 +01:00
commit b17ddb6a3c
4 changed files with 22 additions and 0 deletions

2
.env Normal file
View File

@ -0,0 +1,2 @@
REDIS_PORT_6379_TCP_ADDR=calcnetignet_redis
REDIS_PORT_6379_TCP_PORT=6379

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
volumes/

1
README.md Normal file
View File

@ -0,0 +1 @@
# calc.netig.net

18
compose.yml Normal file
View 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