1
0
Fork 0
Go to file
Florian Hoss 78428ccb72
Unjx / Build and push Docker image (push) Successful in 11m10s Details
Update package-lock.json
2023-05-18 00:24:12 +02:00
.gitea/workflows Changing to actions 2023-05-18 00:20:16 +02:00
src Finalise rust setup 2022-12-11 13:55:34 +01:00
static Minor changes 2022-12-11 15:22:07 +01:00
.dockerignore Move to rust 2022-12-10 16:44:33 +01:00
.gitignore Finalise rust setup 2022-12-11 13:55:34 +01:00
Cargo.lock Changing to actions 2023-05-18 00:20:16 +02:00
Cargo.toml Finalise rust setup 2022-12-11 13:55:34 +01:00
Dockerfile Changing to actions 2023-05-18 00:20:16 +02:00
README.md Add port as env 2022-12-10 23:44:49 +01:00
entrypoint.sh Changing to actions 2023-05-18 00:20:16 +02:00
package-lock.json Update package-lock.json 2023-05-18 00:24:12 +02:00
package.json Changing to actions 2023-05-18 00:20:16 +02:00
tailwind.config.js Finalise rust setup 2022-12-11 13:55:34 +01:00

README.md

Unjx

docker-compose example:

version: '3.9'

networks:
  proxy:
    external: true

services:

  unjx:
    image: ghcr.io/flohoss/unjx:latest
    container_name: unjx
    restart: unless-stopped
    environment:
      - PORT=4000
    expose:
      - 4000
    networks:
      - proxy