From ab6e7c42f2828eaa8e479affb375696c7589ca38 Mon Sep 17 00:00:00 2001 From: therealpaulgg Date: Tue, 20 Feb 2024 22:06:51 -0700 Subject: [PATCH] rename --- docker-compose-debug.yaml | 42 --------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 docker-compose-debug.yaml diff --git a/docker-compose-debug.yaml b/docker-compose-debug.yaml deleted file mode 100644 index 2376202..0000000 --- a/docker-compose-debug.yaml +++ /dev/null @@ -1,42 +0,0 @@ -version: '3.3' -services: - ssh-sync-server: - restart: always - environment: - - PORT=3000 - - NO_DOTENV=1 - - DATABASE_USERNAME=sshsync - - DATABASE_PASSWORD=sshsync - - DATABASE_NAME=sshsync - - DATABASE_HOST=ssh-sync-db:5432 - logging: - driver: json-file - options: - max-size: 10m - ports: - - '3000:3000' - image: fd49561087a8563fece3be7eff59f6ff728c3e749fbd4ebfaee96a6ee3982b7d - container_name: ssh-sync-server - ssh-sync-db: - image: therealpaulgg/ssh-sync-db:latest - container_name: ssh-sync-db - environment: - - POSTGRES_USER=sshsync - - POSTGRES_PASSWORD=sshsync - - POSTGRES_DB=sshsync - restart: always - ssh-sync: - image: 46204e8109ce - container_name: ssh-sync - stdin_open: true # Allows Docker container to keep STDIN open - tty: true # Allocates a pseudo-TTY - ssh-sync-2: - image: 46204e8109ce - container_name: ssh-sync-2 - stdin_open: true # Allows Docker container to keep STDIN open - tty: true # Allocates a pseudo-TTY - ssh-sync-3: - image: 46204e8109ce - container_name: ssh-sync-3 - stdin_open: true # Allows Docker container to keep STDIN open - tty: true # Allocates a pseudo-TTY \ No newline at end of file