Initial commit

This commit is contained in:
2025-10-27 11:17:29 +01:00
commit f88d870db5
14 changed files with 4423 additions and 0 deletions

17
Justfile Normal file
View File

@@ -0,0 +1,17 @@
set dotenv-load
run_sling:
docker run -it --rm \
-v ${PWD}/replication.yaml:/replication.yaml \
-v ${PWD}/storage:/storage \
-e POSTGRES="postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB?sslmode=disable" \
-e SLING_DISABLE_TELEMETRY=true \
docker.io/slingdata/sling run -r /replication.yaml
run:
docker run -it --rm \
-v ${PWD}/replication.yaml:/replication.yaml \
-v ${PWD}/storage:/storage \
-e POSTGRES="postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB?sslmode=disable" \
--entrypoint bash \
docker.io/slingdata/sling:v1.4.24