An open API service indexing awesome lists of open source software.

https://github.com/ietf-tools/ietf-at-proxy

nginx and docker configuration files to serve Author Tools.
https://github.com/ietf-tools/ietf-at-proxy

Last synced: 5 months ago
JSON representation

nginx and docker configuration files to serve Author Tools.

Awesome Lists containing this project

README

        

# ietf-at-proxy

**Archived:** This project is now part of [IETF Author Tools](https://github.com/ietf-tools/ietf-at) repository.

nginx and docker configuration files to serve
[Author Tools](https://author-tools.ietf.org/).

## How to deploy

* Copy `at.env.example` to `at.env`.
* Update host port and datatracker API key on `at.env`.
* Run the following command:
```
docker-compose --env-file at.env up -d
```

## Update running server

The following command will get the latest ietf-at and ietf-at-ui images and
rebuild the service.

```
docker pull nginx:latest
docker pull ghcr.io/ietf-tools/ietf-at:latest
docker pull ghcr.io/ietf-tools/ietf-at-ui:latest
docker-compose --env-file at.env up --force-recreate --build -d
```