DAc 10.0.78.0/24 VpntoUSA 0
DAc 10.0.78.0/32 VpntoUSA 0
[dracon@MikroTik] > /tool traceroute 10.0.78.1
Columns: ADDRESS, LOSS, SENT, LAST, AVG, BEST, WORST, STD-DEV
# ADDRESS LOSS SENT LAST AVG BEST WORST STD-DEV
1 10.0.78.1 0% 6 146.9ms 209.2 146.7 292.4 63
[dracon@MikroTik] > /tool traceroute address=10.78.0.1 src-address=192.168.11.1
Columns: ADDRESS, LOSS, SENT, LAST, AVG, BEST, WORST, STD-DEV
# ADDRESS LOSS SENT LAST AVG BEST WORST STD-DEV
1 176.214.183.253 0% 1 0.9ms 0.9 0.9 0.9 0
2 100% 1 timeout
3 100% 1 timeout
4 100% 1 timeout
5 100% 1 timeout
6 0% 1 0ms
root@mail:~/pgweb# cat docker-compose.yml
services:
pgbackweb:
image: eduardolat/pgbackweb:latest
restart: always
ports:
- "8085:8085" # Access the web interface at http://localhost:8085
volumes:
- ./backups:/backups # If you only use S3 destinations, you don't need this volume
environment:
PBW_ENCRYPTION_KEY: "my_secret_key" # Change this to a strong key
PBW_POSTGRES_CONN_STRING: "postgresql://postgres:password@postgres:5432/pgbackweb?sslmode=disable"
TZ: "America/Guatemala" # Set your timezone, optional
depends_on:
postgres:
condition: service_healthy
postgres:
image: postgres:16
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_DB: pgbackweb
POSTGRES_PASSWORD: password
ports:
- "5432:5432"
volumes:
- ./data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
docker compose ps
NAME IMAGE COMMAND SERVICE CREATED STATUS PORTS
pgweb-pgbackweb-1 eduardolat/pgbackweb:latest "task migrate-serve" pgbackweb About a minute ago Up 24 seconds 0.0.0.0:8085->8085/tcp, :::8085->8085/tcp
pgweb-postgres-1 postgres:16 "docker-entrypoint.s…" postgres About a minute ago Up 25 seconds (healthy) 0.0.0.0:5432->5432/tcp, :::5432->5432/tcp