2020-11-15 21:42:02 +00:00
---
title: Manual Outpost deployment in docker-compose
---
To deploy an outpost with docker-compose, use this snippet in your docker-compose file.
You can also run the outpost in a separate docker-compose project, you just have to ensure that the outpost container can reach your application container.
```yaml
version: "3.5"
services:
2021-03-05 13:14:09 +00:00
authentik_proxy:
2021-09-10 20:10:35 +00:00
image: ghcr.io/goauthentik/proxy:2021.8.5
2021-03-05 13:14:09 +00:00
ports:
2021-09-08 18:04:56 +00:00
- 9000:9000
- 9443:9443
2021-03-05 13:14:09 +00:00
environment:
AUTHENTIK_HOST: https://your-authentik.tld
AUTHENTIK_INSECURE: "false"
AUTHENTIK_TOKEN: token-generated-by-authentik
2021-09-08 18:04:56 +00:00
# Starting with 2021.10, you can optionally set this too
# when authentik_host for internal communication doesn't match the public URL
# AUTHENTIK_HOST_BROWSER: https://external-domain.tld
2021-05-14 09:19:09 +00:00
# Or, for the LDAP Outpost
authentik_proxy:
2021-09-10 20:10:35 +00:00
image: ghcr.io/goauthentik/ldap:2021.8.5
2021-05-14 09:19:09 +00:00
ports:
- 389:3389
environment:
AUTHENTIK_HOST: https://your-authentik.tld
AUTHENTIK_INSECURE: "false"
AUTHENTIK_TOKEN: token-generated-by-authentik
2020-11-15 21:42:02 +00:00
```